Searched refs:hci (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DHttpCaller.java35 final private HttpCallerInfo hci; field in class:HttpCaller
37 public HttpCaller(HttpCallerInfo hci) { argument
38 this.hci = hci;
42 return hci;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/spnego/
H A DNegotiateCallbackHandler.java55 private final HttpCallerInfo hci; field in class:NegotiateCallbackHandler
57 public NegotiateCallbackHandler(HttpCallerInfo hci) { argument
58 this.hci = hci;
66 hci.host, hci.addr, hci.port, hci.protocol,
67 hci.prompt, hci
[all...]
H A DNegotiatorImpl.java67 private void init(HttpCallerInfo hci) throws GSSException { argument
70 if (hci.scheme.equalsIgnoreCase("Kerberos")) {
91 new HttpCaller(hci));
95 String peerName = "HTTP@" + hci.host.toLowerCase();
115 public NegotiatorImpl(HttpCallerInfo hci) throws IOException { argument
117 init(hci);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DNegotiateAuthentication.java49 final private HttpCallerInfo hci; field in class:NegotiateAuthentication
64 * @param hci a schemed object.
66 public NegotiateAuthentication(HttpCallerInfo hci) { argument
67 super(RequestorType.PROXY==hci.authType ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
68 hci.scheme.equalsIgnoreCase("Negotiate") ? NEGOTIATE : KERBEROS,
69 hci.url,
71 this.hci = hci;
93 synchronized public static boolean isSupported(HttpCallerInfo hci) { argument
98 String hostname = hci
[all...]
H A DAuthenticationHeader.java84 private final HttpCallerInfo hci; // un-schemed, need check field in class:AuthenticationHeader
120 HttpCallerInfo hci, boolean dontUseNegotiate) {
121 this.hci = hci;
130 return hci;
180 if(hci == null || !NegotiateAuthentication.isSupported(new HttpCallerInfo(hci, "Negotiate"))) {
200 if(hci == null || !NegotiateAuthentication.isSupported(new HttpCallerInfo(hci, "Kerberos"))) {
119 AuthenticationHeader(String hdrname, MessageHeader response, HttpCallerInfo hci, boolean dontUseNegotiate) argument
H A DNegotiator.java37 static Negotiator getNegotiator(HttpCallerInfo hci) { argument
40 // return new NegotiatorImpl(hci);
63 return (Negotiator) (c.newInstance(hci));

Completed in 31 milliseconds