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

/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCredentialsProvider.java69 * @param authscope the {@link AuthScope authentication scope}
76 final AuthScope authscope,
78 if (authscope == null) {
81 credMap.put(authscope, credentials);
88 * @param authscope the {@link AuthScope authentication scope}
94 final AuthScope authscope) {
96 Credentials creds = map.get(authscope);
103 int factor = authscope.match(current);
119 * @param authscope the {@link AuthScope authentication scope}
124 public synchronized Credentials getCredentials(final AuthScope authscope) { argument
75 setCredentials( final AuthScope authscope, final Credentials credentials) argument
92 matchCredentials( final HashMap<AuthScope, Credentials> map, final AuthScope authscope) argument
[all...]
/external/apache-http/src/org/apache/http/client/
H A DCredentialsProvider.java49 * @param authscope the {@link AuthScope authentication scope}
55 void setCredentials(AuthScope authscope, Credentials credentials); argument
60 * @param authscope the {@link AuthScope authentication scope}
65 Credentials getCredentials(AuthScope authscope); argument
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java151 public AuthScope(final AuthScope authscope) { argument
153 if (authscope == null) {
156 this.host = authscope.getHost();
157 this.port = authscope.getPort();
158 this.realm = authscope.getRealm();
159 this.scheme = authscope.getScheme();

Completed in 63 milliseconds