Package org.eclipse.jetty.nosql
Class NoSqlSessionDataStore.NoSqlSessionData
- java.lang.Object
-
- org.eclipse.jetty.server.session.SessionData
-
- org.eclipse.jetty.nosql.NoSqlSessionDataStore.NoSqlSessionData
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- NoSqlSessionDataStore
public class NoSqlSessionDataStore.NoSqlSessionData extends SessionData
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.eclipse.jetty.server.session.SessionData
_accessed, _attributes, _contextPath, _cookieSet, _created, _dirty, _expiry, _id, _lastAccessed, _lastNode, _lastSaved, _maxInactiveMs, _metaDataDirty, _vhost
-
-
Constructor Summary
Constructors Constructor Description NoSqlSessionData(java.lang.String id, java.lang.String cpath, java.lang.String vhost, long created, long accessed, long lastAccessed, long maxInactiveMs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<java.lang.String>
getAllAttributeNames()
java.lang.Object
getVersion()
void
setDirty(java.lang.String name)
void
setVersion(java.lang.Object v)
java.util.Set<java.lang.String>
takeDirtyAttributes()
-
Methods inherited from class org.eclipse.jetty.server.session.SessionData
calcAndSetExpiry, calcAndSetExpiry, calcExpiry, calcExpiry, clean, clearAllAttributes, copy, deserializeAttributes, getAccessed, getAllAttributes, getAttribute, getContextPath, getCookieSet, getCreated, getExpiry, getId, getKeys, getLastAccessed, getLastNode, getLastSaved, getMaxInactiveMs, getVhost, isDirty, isExpiredAt, isMetaDataDirty, putAllAttributes, serializeAttributes, setAccessed, setAttribute, setContextPath, setCookieSet, setCreated, setDirty, setExpiry, setId, setLastAccessed, setLastNode, setLastSaved, setMaxInactiveMs, setMetaDataDirty, setVhost, toString
-
-
-
-
Method Detail
-
setVersion
public void setVersion(java.lang.Object v)
-
getVersion
public java.lang.Object getVersion()
-
setDirty
public void setDirty(java.lang.String name)
- Overrides:
setDirty
in classSessionData
-
takeDirtyAttributes
public java.util.Set<java.lang.String> takeDirtyAttributes()
-
getAllAttributeNames
public java.util.Set<java.lang.String> getAllAttributeNames()
-
-