Searched refs:authInfo (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyTunnelServer.java116 String authInfo;
117 if ((authInfo = mheader.findValue("Proxy-Authorization"))
119 if (authenticate(authInfo)) {
285 * do "basic" authentication, authInfo is of the form:
289 private boolean authenticate(String authInfo) throws IOException { argument
292 authInfo.trim();
293 int ind = authInfo.indexOf(' ');
294 String recvdUserPlusPass = authInfo.substring(ind + 1).trim();
306 + authInfo);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DProxyTunnelServer.java118 String authInfo;
119 if ((authInfo = mheader.findValue("Proxy-Authorization"))
121 if (authenticate(authInfo)) {
287 * do "basic" authentication, authInfo is of the form:
291 private boolean authenticate(String authInfo) throws IOException { argument
294 authInfo.trim();
295 int ind = authInfo.indexOf(' ');
296 String recvdUserPlusPass = authInfo.substring(ind + 1).trim();
308 + authInfo);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DProxyTunnelServer.java117 String authInfo;
118 if ((authInfo = mheader.findValue("Proxy-Authorization"))
120 if (authenticate(authInfo)) {
286 * do "basic" authentication, authInfo is of the form:
290 private boolean authenticate(String authInfo) throws IOException { argument
293 authInfo.trim();
294 int ind = authInfo.indexOf(' ');
295 String recvdUserPlusPass = authInfo.substring(ind + 1).trim();
307 + authInfo);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DDefaultAuthenticator.java45 private final List<AuthInfo> authInfo = new ArrayList<AuthInfo>(); field in class:DefaultAuthenticator
87 for(AuthInfo auth:authInfo){
127 authInfo.add(new AuthInfo(new URL(text), user, password));

Completed in 32 milliseconds