Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.net.ssl.SSLSession

Uses of SSLSession in javax.net.ssl
 

Fields in javax.net.ssl declared as SSLSession
private  SSLSession HandshakeCompletedEvent.session
          The session.
 

Methods in javax.net.ssl that return SSLSession
 SSLSession SSLSessionBindingEvent.getSession()
          Returns the session that the object was bound to.
 SSLSession SSLSessionContext.getSession(byte[] sessionId)
          Gets the session specified by its ID, or null if there is no session, or if it has expired.
abstract  SSLSession SSLSocket.getSession()
          Returns this socket's session object.
 SSLSession HandshakeCompletedEvent.getSession()
          Returns the SSL session object associated with this connection.
 

Methods in javax.net.ssl with parameters of type SSLSession
 boolean TrivialHostnameVerifier.verify(java.lang.String hostname, SSLSession session)
           
 boolean HostnameVerifier.verify(java.lang.String hostname, SSLSession session)
          Verifies a hostname given a particular SSL session.
 

Constructors in javax.net.ssl with parameters of type SSLSession
SSLSessionBindingEvent(SSLSession session, java.lang.String name)
          Creates a new binding event.
HandshakeCompletedEvent(SSLSocket socket, SSLSession session)
          Creates a new handshake completed event.