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.java76 final AuthScope authscope, in setCredentials() argument
78 if (authscope == null) { in setCredentials()
81 credMap.put(authscope, credentials); in setCredentials()
94 final AuthScope authscope) { in matchCredentials() argument
96 Credentials creds = map.get(authscope); in matchCredentials()
103 int factor = authscope.match(current); in matchCredentials()
124 public synchronized Credentials getCredentials(final AuthScope authscope) { in getCredentials() argument
125 if (authscope == null) { in getCredentials()
128 return matchCredentials(this.credMap, authscope); in getCredentials()
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java151 public AuthScope(final AuthScope authscope) { in AuthScope() argument
153 if (authscope == null) { in AuthScope()
156 this.host = authscope.getHost(); in AuthScope()
157 this.port = authscope.getPort(); in AuthScope()
158 this.realm = authscope.getRealm(); in AuthScope()
159 this.scheme = authscope.getScheme(); in AuthScope()
/external/apache-http/src/org/apache/http/client/
DCredentialsProvider.java55 void setCredentials(AuthScope authscope, Credentials credentials); in setCredentials() argument
65 Credentials getCredentials(AuthScope authscope); in getCredentials() argument