- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
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!");
|
|
}
|
|
}
|