Package org.apache.catalina.session
Class StandardSessionAccessor
java.lang.Object
org.apache.catalina.session.StandardSessionAccessor
- All Implemented Interfaces:
HttpSession.Accessor
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
access
(Consumer<HttpSession> sessionConsumer) Call to access the session with the same semantics as if the session was accessed during an HTTP request.
-
Constructor Details
-
StandardSessionAccessor
-
-
Method Details
-
access
Description copied from interface:jakarta.servlet.http.HttpSession.Accessor
Call to access the session with the same semantics as if the session was accessed during an HTTP request.The effect of this call on the session is as if an HTTP request starts;
Consumer.accept(Object)
is called with the associated session object enabling the application to interact with the session; and, once that method returns, the HTTP request ends.- Specified by:
access
in interfaceHttpSession.Accessor
- Parameters:
sessionConsumer
- the application providedConsumer
instance that will access the session
-