- 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
28 lines
635 B
Java
28 lines
635 B
Java
package org.apache.http;
|
|
|
|
import java.util.Locale;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public interface HttpResponse extends HttpMessage {
|
|
HttpEntity getEntity();
|
|
|
|
Locale getLocale();
|
|
|
|
StatusLine getStatusLine();
|
|
|
|
void setEntity(HttpEntity httpEntity);
|
|
|
|
void setLocale(Locale locale);
|
|
|
|
void setReasonPhrase(String str) throws IllegalStateException;
|
|
|
|
void setStatusCode(int i) throws IllegalStateException;
|
|
|
|
void setStatusLine(ProtocolVersion protocolVersion, int i);
|
|
|
|
void setStatusLine(ProtocolVersion protocolVersion, int i, String str);
|
|
|
|
void setStatusLine(StatusLine statusLine);
|
|
}
|