Interface HASession
-
- All Superinterfaces:
Session
- All Known Implementing Classes:
BaseHASession,FullHASession,ModifiedAttributeHASession,ModifiedHASession
public interface HASession extends Session
- Author:
- lwhite, Rajiv Mordani
-
-
Field Summary
-
Fields inherited from interface org.apache.catalina.Session
SESSION_CREATED_EVENT, SESSION_DESTROYED_EVENT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetSsoId()this returns the ssoIdStringgetUserName()this returns the user namelongincrementVersion()booleanisDirty()this returns the dirty flagbooleanisPersistent()voidsetDirty(boolean value)this sets the dirty flagvoidsetPersistent(boolean value)voidsetSsoId(String ssoId)this sets the ssoIdvoidsetUserName(String userName)this sets the user namevoidsetVersion(long value)voidsync()-
Methods inherited from interface org.apache.catalina.Session
access, addSessionListener, endAccess, expire, getAttributes, getAuthType, getCreationTime, getId, getIdInternal, getInfo, getIsValid, getLastAccessedTime, getManager, getMaxInactiveInterval, getNote, getNoteNames, getPrincipal, getSession, getSsoVersion, getVersion, hasExpired, isValid, lockForeground, recycle, removeNote, removeSessionListener, setAuthType, setCreationTime, setId, setManager, setMaxInactiveInterval, setNew, setNote, setPrincipal, setSsoVersion, setValid, unlockForeground
-
-
-
-
Method Detail
-
isDirty
boolean isDirty()
this returns the dirty flag
-
setDirty
void setDirty(boolean value)
this sets the dirty flag- Parameters:
value-
-
setSsoId
void setSsoId(String ssoId)
this sets the ssoId
-
getUserName
String getUserName()
this returns the user name
-
setUserName
void setUserName(String userName)
this sets the user name- Parameters:
userName-
-
sync
void sync()
-
incrementVersion
long incrementVersion()
-
setVersion
void setVersion(long value)
-
isPersistent
boolean isPersistent()
-
setPersistent
void setPersistent(boolean value)
-
-