Uses of Interface
javax.net.ssl.SSLSession
| Package | Description |
|---|---|
| com.squareup.okhttp.internal.tls | |
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
| org.apache.http.conn |
The client-side connection management and handling API
at the heart of what is referred to as HttpConn.
|
| org.apache.http.conn.ssl |
TLS/SSL specific parts of the HttpConn API.
|
| org.apache.http.impl.conn | |
| org.conscrypt |
-
Uses of SSLSession in com.squareup.okhttp.internal.tls
Methods in com.squareup.okhttp.internal.tls with parameters of type SSLSession Modifier and Type Method Description booleanOkHostnameVerifier. verify(String host, SSLSession session) -
Uses of SSLSession in javax.net.ssl
Methods in javax.net.ssl that return SSLSession Modifier and Type Method Description SSLSessionHandshakeCompletedEvent. getSession()Returns the SSL session associated with this event.abstract SSLSessionSSLEngine. getSession()Returns the SSL session for this engine instance.SSLSessionSSLSessionBindingEvent. getSession()Returns the session to which the binding is added or from which it is removed.SSLSessionSSLSessionContext. getSession(byte[] sessionId)Returns the session for the specified session identifier.abstract SSLSessionSSLSocket. getSession()Returns theSSLSessionfor this connection.Methods in javax.net.ssl with parameters of type SSLSession Modifier and Type Method Description booleanDefaultHostnameVerifier. verify(String host, SSLSession session)booleanHostnameVerifier. verify(String hostname, SSLSession session)Verifies that the specified hostname is allowed within the specified SSL session.Constructors in javax.net.ssl with parameters of type SSLSession Constructor Description HandshakeCompletedEvent(SSLSocket sock, SSLSession s)Creates a newHandshakeCompletedEventwith the specified SSL socket and SSL session.SSLSessionBindingEvent(SSLSession session, String name)Creates a newSSLSessionBindingEventfor the specified session indicating a binding event for the specified name. -
Uses of SSLSession in org.apache.http.conn
Methods in org.apache.http.conn that return SSLSession Modifier and Type Method Description SSLSessionManagedClientConnection. getSSLSession()Obtains the SSL session of the underlying connection, if any. -
Uses of SSLSession in org.apache.http.conn.ssl
Methods in org.apache.http.conn.ssl with parameters of type SSLSession Modifier and Type Method Description booleanAbstractVerifier. verify(String host, SSLSession session)booleanX509HostnameVerifier. verify(String host, SSLSession session) -
Uses of SSLSession in org.apache.http.impl.conn
Methods in org.apache.http.impl.conn that return SSLSession Modifier and Type Method Description SSLSessionAbstractClientConnAdapter. getSSLSession() -
Uses of SSLSession in org.conscrypt
Classes in org.conscrypt that implement SSLSession Modifier and Type Class Description classOpenSSLSessionImplImplementation of the class OpenSSLSessionImpl based on OpenSSL.classSSLSessionImplMethods in org.conscrypt that return SSLSession Modifier and Type Method Description SSLSessionClientSessionContext. getSession(String host, int port)Finds a cached session for the given host name and port.SSLSessionOpenSSLSocketImpl. getSession()SSLSessionServerSessionContext. getSession(byte[] sessionId)SSLSessionSSLEngineImpl. getSession()This method works according to the specification of implemented class.SSLSessionSSLSocketImpl. getSession()This method works according to the specification of implemented class.Methods in org.conscrypt with parameters of type SSLSession Modifier and Type Method Description voidClientSessionContext. putSession(SSLSession session)voidSSLClientSessionCache. putSessionData(SSLSession session, byte[] sessionData)Stores session data for the given session.voidSSLServerSessionCache. putSessionData(SSLSession session, byte[] sessionData)Stores session data for the given session.protected voidClientSessionContext. sessionRemoved(SSLSession session)protected voidServerSessionContext. sessionRemoved(SSLSession session)