Class PageTesterSession
- java.lang.Object
-
- org.apache.tapestry5.internal.test.PageTesterSession
-
- All Implemented Interfaces:
Session
public class PageTesterSession extends java.lang.Object implements Session
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tapestry5.http.services.Session
Session.LockMode
-
-
Constructor Summary
Constructors Constructor Description PageTesterSession()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsAttribute(java.lang.String name)Checks if the a value is stored in the session with the specified name.booleancontainsAttribute(java.lang.String name, Session.LockMode lockMode)Checks if the a value is stored in the session with the specified name.java.lang.ObjectgetAttribute(java.lang.String name)Returns the value previously stored in the session.java.lang.ObjectgetAttribute(java.lang.String name, Session.LockMode lockMode)Returns the value previously stored in the session.java.util.List<java.lang.String>getAttributeNames()Returns a list of the names of all attributes stored in the session.java.util.List<java.lang.String>getAttributeNames(java.lang.String prefix)Returns a list of the names of all attributes stored in the session whose name has the provided prefix.java.util.List<java.lang.String>getAttributeNames(java.lang.String prefix, Session.LockMode lockMode)Returns a list of the names of all attributes stored in the session whose name has the provided prefix.java.util.List<java.lang.String>getAttributeNames(Session.LockMode lockMode)Returns a list of the names of all attributes stored in the session.intgetMaxInactiveInterval()Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses.voidinvalidate()Invalidates this session then unbinds any objects bound to it.booleanisInvalidated()Checks to see if the session has been invalidated.voidrestoreDirtyObjects()Re-stores dirty objects back into the session.voidsetAttribute(java.lang.String name, java.lang.Object value)Sets the value of an attribute.voidsetMaxInactiveInterval(int seconds)Specifies the time, in seconds, between client requests before the servlet container will invalidate this session.
-
-
-
Constructor Detail
-
PageTesterSession
public PageTesterSession()
-
-
Method Detail
-
getAttributeNames
public java.util.List<java.lang.String> getAttributeNames()
Description copied from interface:SessionReturns a list of the names of all attributes stored in the session.The names are returned sorted alphabetically.
By default, a
READlock is requested.- Specified by:
getAttributeNamesin interfaceSession
-
getAttributeNames
public java.util.List<java.lang.String> getAttributeNames(Session.LockMode lockMode)
Description copied from interface:SessionReturns a list of the names of all attributes stored in the session.Uses the requested
Session.LockModeto acquire an appropiate lock.- Specified by:
getAttributeNamesin interfaceSession- Parameters:
lockMode- The requested minimum lock mode. If null,READis used.- Returns:
- Alphabetically sorted list of all attributes
-
getAttributeNames
public java.util.List<java.lang.String> getAttributeNames(java.lang.String prefix)
Description copied from interface:SessionReturns a list of the names of all attributes stored in the session whose name has the provided prefix.By default, a
READlock is requested.- Specified by:
getAttributeNamesin interfaceSession- Parameters:
prefix- The attribute prefix- Returns:
- Alphabetically sorted list of attributes matching the prefix
-
getAttributeNames
public java.util.List<java.lang.String> getAttributeNames(java.lang.String prefix, Session.LockMode lockMode)
Description copied from interface:SessionReturns a list of the names of all attributes stored in the session whose name has the provided prefix.Uses the requested
Session.LockModeto acquire an appropriate lock.- Specified by:
getAttributeNamesin interfaceSession- Parameters:
prefix- The attribute prefix- Returns:
- Alphabetically sorted list of attributes matching the prefix
-
getAttribute
public java.lang.Object getAttribute(java.lang.String name)
Description copied from interface:SessionReturns the value previously stored in the session.By default, a
WRITElock is requested.- Specified by:
getAttributein interfaceSession- Parameters:
name- The name of the attribute
-
getAttribute
public java.lang.Object getAttribute(java.lang.String name, Session.LockMode lockMode)
Description copied from interface:SessionReturns the value previously stored in the session.Uses the requested
Session.LockModeto acquire an appropriate lock.- Specified by:
getAttributein interfaceSession- Parameters:
name- The name of the attribute
-
setAttribute
public void setAttribute(java.lang.String name, java.lang.Object value)
Description copied from interface:SessionSets the value of an attribute. If the value isnull, then the attribute is deleted.- Specified by:
setAttributein interfaceSession- Parameters:
name- The name of the attributevalue- The new value of the attribute;nulldeletes the attribute.
-
containsAttribute
public boolean containsAttribute(java.lang.String name)
Description copied from interface:SessionChecks if the a value is stored in the session with the specified name.By default, a
READlock is requested.- Specified by:
containsAttributein interfaceSession- Parameters:
name- The name of the attribute
-
containsAttribute
public boolean containsAttribute(java.lang.String name, Session.LockMode lockMode)
Description copied from interface:SessionChecks if the a value is stored in the session with the specified name.Uses the requested
Session.LockModeto acquire an appropriate lock.- Specified by:
containsAttributein interfaceSession- Parameters:
name- The name of the attribute
-
getMaxInactiveInterval
public int getMaxInactiveInterval()
Description copied from interface:SessionReturns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses. After this interval, the servlet container will invalidate the session.The maximum time interval can be set with the setMaxInactiveInterval method.
A negative time indicates the session should never timeout.
- Specified by:
getMaxInactiveIntervalin interfaceSession
-
invalidate
public void invalidate()
Description copied from interface:SessionInvalidates this session then unbinds any objects bound to it.- Specified by:
invalidatein interfaceSession
-
isInvalidated
public boolean isInvalidated()
Description copied from interface:SessionChecks to see if the session has been invalidated. Note: since 5.3 this will also catch calls toHttpSession.invalidate().- Specified by:
isInvalidatedin interfaceSession
-
restoreDirtyObjects
public void restoreDirtyObjects()
Description copied from interface:SessionRe-stores dirty objects back into the session. This is necessary to support clustering, because (in most application servers) session objects are only broadcast around the cluster from setAttribute(). If a mutable session object is read and changed, those changes will be limited to a single server in the cluster, which can cause confusing application failures in the event of a failover. Does nothing if there are no changes, or the session has been invalidated.- Specified by:
restoreDirtyObjectsin interfaceSession- See Also:
OptimizedSessionPersistedObject,OptimizedSessionPersistedObjectAnalyzer,ImmutableSessionPersistedObject
-
setMaxInactiveInterval
public void setMaxInactiveInterval(int seconds)
Description copied from interface:SessionSpecifies the time, in seconds, between client requests before the servlet container will invalidate this session.A negative time indicates the session should never timeout.
- Specified by:
setMaxInactiveIntervalin interfaceSession
-
-