Searched defs:getPeerPrincipal (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DSecureCacheResponse.java72 * @see #getPeerPrincipal()
91 public abstract Principal getPeerPrincipal() method in class:SecureCacheResponse
105 * @see #getPeerPrincipal()
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DHandshakeCompletedEvent.java129 * @see #getPeerPrincipal()
155 * @see #getPeerPrincipal()
179 public Principal getPeerPrincipal() method in class:HandshakeCompletedEvent
184 principal = session.getPeerPrincipal();
204 * @see #getPeerPrincipal()
H A DHttpsURLConnection.java115 * @see #getPeerPrincipal()
143 public Principal getPeerPrincipal() method in class:HttpsURLConnection
168 * @see #getPeerPrincipal()
H A DSSLSession.java229 * @see #getPeerPrincipal()
275 * @see #getPeerPrincipal()
296 public Principal getPeerPrincipal() method in interface:SSLSession
308 * @see #getPeerPrincipal()
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java120 HostnameChecker.getServerName(getPeerPrincipal(session));
145 private Principal getPeerPrincipal(javax.net.ssl.SSLSession session) method in class:VerifierWrapper
150 principal = session.getPeerPrincipal();
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DKerberosClientKeyExchange.java139 public Principal getPeerPrincipal(){ method in class:KerberosClientKeyExchange
140 return impl.getPeerPrincipal();
H A DSSLSessionImpl.java504 public Principal getPeerPrincipal() method in class:SSLSessionImpl
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java417 Principal principal = getPeerPrincipal(session);
466 private static Principal getPeerPrincipal(SSLSession session) method in class:StartTlsResponseImpl
470 principal = session.getPeerPrincipal();
/openjdk7/jdk/src/share/classes/sun/security/ssl/krb5/
H A DKerberosClientKeyExchangeImpl.java357 public KerberosPrincipal getPeerPrincipal() { method in class:KerberosClientKeyExchangeImpl
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DAbstractDelegateHttpsURLConnection.java282 Principal getPeerPrincipal() method in class:AbstractDelegateHttpsURLConnection
286 return ((SecureCacheResponse)cachedResponse).getPeerPrincipal();
292 return (((HttpsClient)http).getPeerPrincipal());
H A DHttpsClient.java609 if (!HostnameChecker.match(host, getPeerPrincipal())) {
718 Principal getPeerPrincipal() method in class:HttpsClient
723 principal = session.getPeerPrincipal();
H A DHttpsURLConnectionImpl.java223 public Principal getPeerPrincipal() method in class:HttpsURLConnectionImpl
226 return delegate.getPeerPrincipal();

Completed in 40 milliseconds