Uses of Class
org.eclipse.jetty.server.session.SessionHandler
-
Packages that use SessionHandler Package Description org.eclipse.jetty.gcloud.session org.eclipse.jetty.hazelcast.session org.eclipse.jetty.nosql.mongodb Jetty NoSql : MongoDB Integrationorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.session Jetty Server : Session Management Implementationsorg.eclipse.jetty.servlet Jetty Server : Modular Servlet Integrationorg.eclipse.jetty.session.infinispan org.eclipse.jetty.webapp Jetty Util : Modular Web Application Support -
-
Uses of SessionHandler in org.eclipse.jetty.gcloud.session
Methods in org.eclipse.jetty.gcloud.session with parameters of type SessionHandler Modifier and Type Method Description SessionDataStore
GCloudSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionHandler in org.eclipse.jetty.hazelcast.session
Methods in org.eclipse.jetty.hazelcast.session with parameters of type SessionHandler Modifier and Type Method Description SessionDataStore
HazelcastSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionHandler in org.eclipse.jetty.nosql.mongodb
Methods in org.eclipse.jetty.nosql.mongodb with parameters of type SessionHandler Modifier and Type Method Description SessionDataStore
MongoSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionHandler in org.eclipse.jetty.server
Methods in org.eclipse.jetty.server that return SessionHandler Modifier and Type Method Description SessionHandler
Request. getSessionHandler()
Methods in org.eclipse.jetty.server that return types with arguments of type SessionHandler Modifier and Type Method Description java.util.Set<SessionHandler>
SessionIdManager. getSessionHandlers()
Get the set of all session handlers for this nodeMethods in org.eclipse.jetty.server with parameters of type SessionHandler Modifier and Type Method Description javax.servlet.http.HttpSession
Request. getSession(SessionHandler sessionHandler)
Find a session that this request has already entered for the given SessionHandlervoid
Request. setSessionHandler(SessionHandler sessionHandler)
-
Uses of SessionHandler in org.eclipse.jetty.server.session
Fields in org.eclipse.jetty.server.session declared as SessionHandler Modifier and Type Field Description protected SessionHandler
AbstractSessionCache. _handler
The SessionHandler related to this SessionCacheprotected SessionHandler
Session. _handler
Methods in org.eclipse.jetty.server.session that return SessionHandler Modifier and Type Method Description SessionHandler
AbstractSessionCache. getSessionHandler()
SessionHandler
Session. getSessionHandler()
SessionHandler
SessionCache. getSessionHandler()
SessionHandler
SessionContext. getSessionHandler()
Methods in org.eclipse.jetty.server.session that return types with arguments of type SessionHandler Modifier and Type Method Description java.util.Set<SessionHandler>
DefaultSessionIdManager. getSessionHandlers()
Get SessionHandler for every context.Methods in org.eclipse.jetty.server.session with parameters of type SessionHandler Modifier and Type Method Description SessionCache
AbstractSessionCacheFactory. getSessionCache(SessionHandler handler)
SessionCache
SessionCacheFactory. getSessionCache(SessionHandler handler)
SessionDataStore
CachingSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
FileSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
JDBCSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
NullSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
SessionDataStore
SessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
abstract SessionCache
AbstractSessionCacheFactory. newSessionCache(SessionHandler handler)
SessionCache
DefaultSessionCacheFactory. newSessionCache(SessionHandler handler)
SessionCache
NullSessionCacheFactory. newSessionCache(SessionHandler handler)
Constructors in org.eclipse.jetty.server.session with parameters of type SessionHandler Constructor Description AbstractSessionCache(SessionHandler handler)
DefaultSessionCache(SessionHandler manager)
NullSessionCache(SessionHandler handler)
Session(SessionHandler handler, javax.servlet.http.HttpServletRequest request, SessionData data)
Create a new sessionSession(SessionHandler handler, SessionData data)
Re-inflate an existing session from some eg persistent store. -
Uses of SessionHandler in org.eclipse.jetty.servlet
Fields in org.eclipse.jetty.servlet declared as SessionHandler Modifier and Type Field Description protected SessionHandler
ServletContextHandler. _sessionHandler
Methods in org.eclipse.jetty.servlet that return SessionHandler Modifier and Type Method Description SessionHandler
ServletContextHandler. getSessionHandler()
protected SessionHandler
ServletContextHandler. newSessionHandler()
Methods in org.eclipse.jetty.servlet with parameters of type SessionHandler Modifier and Type Method Description void
ServletContextHandler. setSessionHandler(SessionHandler sessionHandler)
Constructors in org.eclipse.jetty.servlet with parameters of type SessionHandler Constructor Description ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
ServletContextHandler(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler, int options)
ServletContextHandler(HandlerContainer parent, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
-
Uses of SessionHandler in org.eclipse.jetty.session.infinispan
Methods in org.eclipse.jetty.session.infinispan with parameters of type SessionHandler Modifier and Type Method Description SessionDataStore
InfinispanSessionDataStoreFactory. getSessionDataStore(SessionHandler handler)
-
Uses of SessionHandler in org.eclipse.jetty.webapp
Constructors in org.eclipse.jetty.webapp with parameters of type SessionHandler Constructor Description WebAppContext(HandlerContainer parent, java.lang.String contextPath, SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler, int options)
This constructor is used in the geronimo integration.WebAppContext(SessionHandler sessionHandler, SecurityHandler securityHandler, ServletHandler servletHandler, ErrorHandler errorHandler)
This constructor is used in the geronimo integration.
-