All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface javax.net.ssl.SSLSessionContext

public interface SSLSessionContext
A SSLSessionContext is a grouping of SSLSessions associated with a single entity. For example, it could be associated with a server or client who participates in many sessions concurrently. This interface provides methods for retrieving a SSLSession based on its ID, and allows such IDs to be listed.

See Also:
SSLSession

Method Index

 o getIds()
Returns an Enumeration of all session id's
 o getSession(byte[])
Returns the SSLSession bound to the specified session id, or null if the specified session id does not refer to a valid SSLSession.

Methods

 o getSession
 public abstract SSLSession getSession(byte sessionId[])
Returns the SSLSession bound to the specified session id, or null if the specified session id does not refer to a valid SSLSession.

 o getIds
 public abstract Enumeration getIds()
Returns an Enumeration of all session id's


All Packages  Class Hierarchy  This Package  Previous  Next  Index