- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
517 B
Java
13 lines
517 B
Java
package org.apache.http.protocol;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public interface ExecutionContext {
|
|
public static final String HTTP_CONNECTION = "http.connection";
|
|
public static final String HTTP_PROXY_HOST = "http.proxy_host";
|
|
public static final String HTTP_REQUEST = "http.request";
|
|
public static final String HTTP_REQ_SENT = "http.request_sent";
|
|
public static final String HTTP_RESPONSE = "http.response";
|
|
public static final String HTTP_TARGET_HOST = "http.target_host";
|
|
}
|