- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
17 lines
324 B
Java
17 lines
324 B
Java
package org.apache.http.client.methods;
|
|
|
|
import java.net.URI;
|
|
import org.apache.http.HttpRequest;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public interface HttpUriRequest extends HttpRequest {
|
|
void abort() throws UnsupportedOperationException;
|
|
|
|
String getMethod();
|
|
|
|
URI getURI();
|
|
|
|
boolean isAborted();
|
|
}
|