Files
rr3-apk/decompiled-community/sources/org/apache/http/protocol/BasicHttpProcessor.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

128 lines
4.4 KiB
Java

package org.apache.http.protocol;
import java.io.IOException;
import java.util.List;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpRequestInterceptor;
import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseInterceptor;
@Deprecated
/* loaded from: classes5.dex */
public final class BasicHttpProcessor implements HttpProcessor, HttpRequestInterceptorList, HttpResponseInterceptorList {
protected List requestInterceptors;
protected List responseInterceptors;
public BasicHttpProcessor() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public void addRequestInterceptor(HttpRequestInterceptor httpRequestInterceptor) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public void addRequestInterceptor(HttpRequestInterceptor httpRequestInterceptor, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public void addResponseInterceptor(HttpResponseInterceptor httpResponseInterceptor, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public void removeRequestInterceptorByClass(Class cls) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public void removeResponseInterceptorByClass(Class cls) {
throw new RuntimeException("Stub!");
}
public final void addInterceptor(HttpRequestInterceptor httpRequestInterceptor) {
throw new RuntimeException("Stub!");
}
public final void addInterceptor(HttpRequestInterceptor httpRequestInterceptor, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public int getRequestInterceptorCount() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public HttpRequestInterceptor getRequestInterceptor(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList
public void clearRequestInterceptors() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public void addResponseInterceptor(HttpResponseInterceptor httpResponseInterceptor) {
throw new RuntimeException("Stub!");
}
public final void addInterceptor(HttpResponseInterceptor httpResponseInterceptor) {
throw new RuntimeException("Stub!");
}
public final void addInterceptor(HttpResponseInterceptor httpResponseInterceptor, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public int getResponseInterceptorCount() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public HttpResponseInterceptor getResponseInterceptor(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpResponseInterceptorList
public void clearResponseInterceptors() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.protocol.HttpRequestInterceptorList, org.apache.http.protocol.HttpResponseInterceptorList
public void setInterceptors(List list) {
throw new RuntimeException("Stub!");
}
public void clearInterceptors() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpRequestInterceptor
public void process(HttpRequest httpRequest, HttpContext httpContext) throws IOException, HttpException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponseInterceptor
public void process(HttpResponse httpResponse, HttpContext httpContext) throws IOException, HttpException {
throw new RuntimeException("Stub!");
}
public void copyInterceptors(BasicHttpProcessor basicHttpProcessor) {
throw new RuntimeException("Stub!");
}
public BasicHttpProcessor copy() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}