Home
last modified time | relevance | path

Searched refs:authscope (Results 1 – 3 of 3) sorted by relevance

/external/apache-http/src/org/apache/http/impl/client/
DBasicCredentialsProvider.java81 final AuthScope authscope, in setCredentials() argument
83 if (authscope == null) { in setCredentials()
86 credMap.put(authscope, credentials); in setCredentials()
99 final AuthScope authscope) { in matchCredentials() argument
101 Credentials creds = map.get(authscope); in matchCredentials()
108 int factor = authscope.match(current); in matchCredentials()
129 public synchronized Credentials getCredentials(final AuthScope authscope) { in getCredentials() argument
130 if (authscope == null) { in getCredentials()
133 return matchCredentials(this.credMap, authscope); in getCredentials()
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java156 public AuthScope(final AuthScope authscope) { in AuthScope() argument
158 if (authscope == null) { in AuthScope()
161 this.host = authscope.getHost(); in AuthScope()
162 this.port = authscope.getPort(); in AuthScope()
163 this.realm = authscope.getRealm(); in AuthScope()
164 this.scheme = authscope.getScheme(); in AuthScope()
/external/apache-http/src/org/apache/http/client/
DCredentialsProvider.java60 void setCredentials(AuthScope authscope, Credentials credentials); in setCredentials() argument
70 Credentials getCredentials(AuthScope authscope); in getCredentials() argument