Home
last modified time | relevance | path

Searched refs:AuthScope (Results 1 – 5 of 5) sorted by relevance

/external/apache-http/src/org/apache/http/impl/client/
DBasicCredentialsProvider.java35 import org.apache.http.auth.AuthScope;
55 private final HashMap<AuthScope, Credentials> credMap;
62 this.credMap = new HashMap<AuthScope, Credentials>(); in BasicCredentialsProvider()
76 final AuthScope authscope, in setCredentials()
93 final HashMap<AuthScope, Credentials> map, in matchCredentials() argument
94 final AuthScope authscope) { in matchCredentials()
101 AuthScope bestMatch = null; in matchCredentials()
102 for (AuthScope current: map.keySet()) { in matchCredentials()
124 public synchronized Credentials getCredentials(final AuthScope authscope) { in getCredentials()
DDefaultRequestDirector.java55 import org.apache.http.auth.AuthScope;
722 AuthScope authScope = this.proxyAuthState.getAuthScope(); in createTunnelToTarget()
1090 AuthScope authScope = new AuthScope( in updateAuthState()
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java47 public class AuthScope { class
75 public static final AuthScope ANY = new AuthScope(ANY_HOST, ANY_PORT, ANY_REALM, ANY_SCHEME);
106 public AuthScope(final String host, int port, in AuthScope() method in AuthScope
129 public AuthScope(final String host, int port, final String realm) { in AuthScope() method in AuthScope
144 public AuthScope(final String host, int port) { in AuthScope() method in AuthScope
151 public AuthScope(final AuthScope authscope) { in AuthScope() method in AuthScope
197 public int match(final AuthScope that) { in match()
241 if (!(o instanceof AuthScope)) { in equals()
244 AuthScope that = (AuthScope) o; in equals()
DAuthState.java48 private AuthScope authScope;
122 public AuthScope getAuthScope() { in getAuthScope()
131 public void setAuthScope(final AuthScope authScope) { in setAuthScope()
/external/apache-http/src/org/apache/http/client/
DCredentialsProvider.java33 import org.apache.http.auth.AuthScope;
55 void setCredentials(AuthScope authscope, Credentials credentials); in setCredentials()
65 Credentials getCredentials(AuthScope authscope); in getCredentials()