Uses of Class
org.eclipse.jetty.server.session.Session
-
Packages that use Session Package Description org.eclipse.jetty.server.session Jetty Server : Session Management Implementations -
-
Uses of Session in org.eclipse.jetty.server.session
Subclasses of Session in org.eclipse.jetty.server.session Modifier and Type Class Description protected classAbstractSessionCache.PlaceHolderSessionPlaceHolderFields in org.eclipse.jetty.server.session with type parameters of type Session Modifier and Type Field Description protected ConcurrentHashMap<String,Session>DefaultSessionCache. _sessionsThe cache of sessions in a hashmapMethods in org.eclipse.jetty.server.session that return Session Modifier and Type Method Description SessionAbstractSessionCache. delete(String id)Remove a session object from this store and from any backing store.SessionSessionCache. delete(String id)Remove a Session completely: from both this cache and the SessionDataStore.abstract SessionAbstractSessionCache. doDelete(String id)Remove the session with this identity from the storeSessionDefaultSessionCache. doDelete(String id)SessionNullSessionCache. doDelete(String id)abstract SessionAbstractSessionCache. doGet(String id)Get the session matching the keySessionDefaultSessionCache. doGet(String id)SessionNullSessionCache. doGet(String id)abstract SessionAbstractSessionCache. doPutIfAbsent(String id, Session session)Put the session into the map if it wasn't already thereSessionDefaultSessionCache. doPutIfAbsent(String id, Session session)SessionNullSessionCache. doPutIfAbsent(String id, Session session)SessionAbstractSessionCache. get(String id)Get a session object.SessionSessionCache. get(String id)Get an existing Session.SessionSession. getSession()SessionSessionHandler. getSession(String id)Get a known existing sessionSessionSessionHandler.SessionIf. getSession()SessionAbstractSessionCache. newSession(HttpServletRequest request, String id, long time, long maxInactiveMs)abstract SessionAbstractSessionCache. newSession(HttpServletRequest request, SessionData data)Create a new Session for a request.abstract SessionAbstractSessionCache. newSession(SessionData data)Create a new Session object from pre-existing session dataSessionDefaultSessionCache. newSession(HttpServletRequest request, SessionData data)SessionDefaultSessionCache. newSession(SessionData data)SessionNullSessionCache. newSession(HttpServletRequest request, SessionData data)SessionNullSessionCache. newSession(SessionData data)SessionSessionCache. newSession(HttpServletRequest request, String id, long time, long maxInactiveMs)Create an entirely new Session.SessionSessionCache. newSession(SessionData data)Re-materialize a Session that has previously existed.SessionSessionHandler. removeSession(String id, boolean invalidate)Remove session from managerSessionAbstractSessionCache. renewSessionId(String oldId, String newId)SessionSessionCache. renewSessionId(String oldId, String newId)Change the id of a Session.Methods in org.eclipse.jetty.server.session with parameters of type Session Modifier and Type Method Description voidAbstractSessionCache. checkInactiveSession(Session session)Check a session for being inactive and thus being able to be evicted, if eviction is enabled.voidSessionCache. checkInactiveSession(Session session)Check a Session to see if it might be appropriate to evict or expire.voidSessionHandler. complete(Session session, Request request)abstract SessionAbstractSessionCache. doPutIfAbsent(String id, Session session)Put the session into the map if it wasn't already thereSessionDefaultSessionCache. doPutIfAbsent(String id, Session session)SessionNullSessionCache. doPutIfAbsent(String id, Session session)abstract booleanAbstractSessionCache. doReplace(String id, Session oldValue, Session newValue)Replace the mapping from id to oldValue with newValuebooleanDefaultSessionCache. doReplace(String id, Session oldValue, Session newValue)booleanNullSessionCache. doReplace(String id, Session oldValue, Session newValue)voidSessionHandler. doSessionAttributeListeners(Session session, String name, Object old, Object value)voidAbstractSessionCache. put(String id, Session session)Put the Session object back into the session store.voidSessionCache. put(String id, Session session)Finish using a Session.voidSessionHandler. sessionInactivityTimerExpired(Session session)Each session has a timer that is configured to go off when either the session has not been accessed for a configurable amount of time, or the session itself has passed its expiry.
-