HomeSort by relevance Sort by last modified time
    Searched refs:authState (Results 1 - 4 of 4) sorted by null

  /external/apache-http/src/org/apache/http/client/protocol/
RequestProxyAuthentication.java 43 import org.apache.http.auth.AuthState;
77 AuthState authState = (AuthState) context.getAttribute(
79 if (authState == null) {
83 AuthScheme authScheme = authState.getAuthScheme();
88 Credentials creds = authState.getCredentials();
93 if (authState.getAuthScope() != null || !authScheme.isConnectionBased()) {
RequestTargetAuthentication.java 43 import org.apache.http.auth.AuthState;
77 AuthState authState = (AuthState) context.getAttribute(
79 if (authState == null) {
83 AuthScheme authScheme = authState.getAuthScheme();
88 Credentials creds = authState.getCredentials();
94 if (authState.getAuthScope() != null || !authScheme.isConnectionBased()) {
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 38 import org.apache.http.auth.AuthState;
52 AuthState targetAuthState = (AuthState) context.getAttribute(
57 AuthState proxyAuthState = (AuthState) context.getAttribute(
77 private static Principal getAuthPrincipal(final AuthState authState) {
78 AuthScheme scheme = authState.getAuthScheme();
80 Credentials creds = authState.getCredentials();
DefaultRequestDirector.java 56 import org.apache.http.auth.AuthState;
156 private final AuthState targetAuthState;
158 private final AuthState proxyAuthState;
239 this.targetAuthState = new AuthState();
240 this.proxyAuthState = new AuthState();
    [all...]

Completed in 89 milliseconds