Searched refs:authScheme (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthenticationInfo.java88 return authScheme;
160 //return ("{"+type+":"+authScheme+":"+protocol+":"+host+":"+port+":"+realm+":"+path+"}");
170 AuthScheme authScheme; field in class:AuthenticationInfo
192 public AuthenticationInfo(char type, AuthScheme authScheme, String host, int port, String realm) { argument
194 this.authScheme = authScheme;
215 public AuthenticationInfo(char type, AuthScheme authScheme, URL url, String realm) { argument
217 this.authScheme = authScheme;
426 return type + ":" + authScheme
[all...]
H A DHttpURLConnection.java1972 AuthScheme authScheme = UNKNOWN;
1974 authScheme = BASIC;
1976 authScheme = DIGEST;
1978 authScheme = NTLM;
1981 authScheme = KERBEROS;
1984 authScheme = NEGOTIATE;
1990 proxyAuthKey = AuthenticationInfo.getProxyAuthKey(host, port, realm, authScheme);
1993 switch (authScheme) {
2113 AuthScheme authScheme = UNKNOWN;
2115 authScheme
[all...]

Completed in 4484 milliseconds