- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
59 lines
2.0 KiB
Java
59 lines
2.0 KiB
Java
package org.apache.http.protocol;
|
|
|
|
import java.io.IOException;
|
|
import org.apache.http.ConnectionReuseStrategy;
|
|
import org.apache.http.HttpException;
|
|
import org.apache.http.HttpRequest;
|
|
import org.apache.http.HttpResponse;
|
|
import org.apache.http.HttpResponseFactory;
|
|
import org.apache.http.HttpServerConnection;
|
|
import org.apache.http.params.HttpParams;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class HttpService {
|
|
public HttpService(HttpProcessor httpProcessor, ConnectionReuseStrategy connectionReuseStrategy, HttpResponseFactory httpResponseFactory) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setHttpProcessor(HttpProcessor httpProcessor) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setConnReuseStrategy(ConnectionReuseStrategy connectionReuseStrategy) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setResponseFactory(HttpResponseFactory httpResponseFactory) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setHandlerResolver(HttpRequestHandlerResolver httpRequestHandlerResolver) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setExpectationVerifier(HttpExpectationVerifier httpExpectationVerifier) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public HttpParams getParams() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setParams(HttpParams httpParams) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void handleRequest(HttpServerConnection httpServerConnection, HttpContext httpContext) throws IOException, HttpException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void handleException(HttpException httpException, HttpResponse httpResponse) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void doService(HttpRequest httpRequest, HttpResponse httpResponse, HttpContext httpContext) throws HttpException, IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|