Uses of Interface
org.forgerock.http.session.Session
-
Packages that use Session Package Description org.forgerock.http.session Provides interfaces for managing and interacting with HTTP Sessions. -
-
Uses of Session in org.forgerock.http.session
Methods in org.forgerock.http.session that return Session Modifier and Type Method Description Session
SessionContext. getSession()
Returns theSession
associated with the remote client.Session
SessionManager. load(Request request)
Deprecated.Loads a new Session for the givenRequest
.Methods in org.forgerock.http.session that return types with arguments of type Session Modifier and Type Method Description Promise<Session,NeverThrowsException>
AsyncSessionManager. loadAsync(Request request)
Loads a new Session for the givenRequest
.Methods in org.forgerock.http.session with parameters of type Session Modifier and Type Method Description void
SessionManager. save(Session session, Response response)
Deprecated.Saves the session into the provided response.Promise<Void,IOException>
AsyncSessionManager. saveAsync(Session session, Response response)
Saves the session into the provided response.SessionContext
SessionContext. setSession(Session session)
Sets theSession
associated with the remote client.Constructors in org.forgerock.http.session with parameters of type Session Constructor Description SessionContext(Context parent, Session session)
Constructs a newSessionContext
.
-