Uses of Interface
javax.net.ssl.SSLSession

Packages that use SSLSession
javax.net.ssl Provides classes for the secure socket package. 
 

Uses of SSLSession in javax.net.ssl
 

Methods in javax.net.ssl that return SSLSession
 SSLSession SSLSessionBindingEvent.getSession()
          Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.
abstract  SSLSession SSLSocket.getSession()
          Returns the SSL Session in use by this connection.
 SSLSession HandshakeCompletedEvent.getSession()
          Returns the session that triggered this event.
 SSLSession SSLSessionContext.getSession(byte[] sessionId)
          Returns the SSLSession bound to the specified session id.
 

Methods in javax.net.ssl with parameters of type SSLSession
 boolean HostnameVerifier.verify(String hostname, SSLSession session)
          Verify that the host name is an acceptable match with the server's authentication scheme.
 

Constructors in javax.net.ssl with parameters of type SSLSession
HandshakeCompletedEvent(SSLSocket sock, SSLSession s)
          Constructs a new HandshakeCompletedEvent.
SSLSessionBindingEvent(SSLSession session, String name)
          Constructs a new SSLSessionBindingEvent.