Class PageTesterSession
java.lang.Object
org.apache.tapestry5.internal.test.PageTesterSession
- All Implemented Interfaces:
Session
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.tapestry5.http.services.Session
Session.LockMode
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsAttribute
(String name) Checks if the a value is stored in the session with the specified name.boolean
containsAttribute
(String name, Session.LockMode lockMode) Checks if the a value is stored in the session with the specified name.getAttribute
(String name) Returns the value previously stored in the session.getAttribute
(String name, Session.LockMode lockMode) Returns the value previously stored in the session.Returns a list of the names of all attributes stored in the session.getAttributeNames
(String prefix) Returns a list of the names of all attributes stored in the session whose name has the provided prefix.getAttributeNames
(String prefix, Session.LockMode lockMode) Returns a list of the names of all attributes stored in the session whose name has the provided prefix.getAttributeNames
(Session.LockMode lockMode) Returns a list of the names of all attributes stored in the session.int
Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses.void
Invalidates this session then unbinds any objects bound to it.boolean
Checks to see if the session has been invalidated.void
Re-stores dirty objects back into the session.void
setAttribute
(String name, Object value) Sets the value of an attribute.void
setMaxInactiveInterval
(int seconds) Specifies the time, in seconds, between client requests before the servlet container will invalidate this session.
-
Constructor Details
-
PageTesterSession
public PageTesterSession()
-
-
Method Details
-
getAttributeNames
Description copied from interface:Session
Returns a list of the names of all attributes stored in the session.The names are returned sorted alphabetically.
By default, a
READ
lock is requested.- Specified by:
getAttributeNames
in interfaceSession
-
getAttributeNames
Description copied from interface:Session
Returns a list of the names of all attributes stored in the session.Uses the requested
Session.LockMode
to acquire an appropiate lock.- Specified by:
getAttributeNames
in interfaceSession
- Parameters:
lockMode
- The requested minimum lock mode. If null,READ
is used.- Returns:
- Alphabetically sorted list of all attributes
-
getAttributeNames
Description copied from interface:Session
Returns a list of the names of all attributes stored in the session whose name has the provided prefix.By default, a
READ
lock is requested.- Specified by:
getAttributeNames
in interfaceSession
- Parameters:
prefix
- The attribute prefix- Returns:
- Alphabetically sorted list of attributes matching the prefix
-
getAttributeNames
Description copied from interface:Session
Returns a list of the names of all attributes stored in the session whose name has the provided prefix.Uses the requested
Session.LockMode
to acquire an appropriate lock.- Specified by:
getAttributeNames
in interfaceSession
- Parameters:
prefix
- The attribute prefix- Returns:
- Alphabetically sorted list of attributes matching the prefix
-
getAttribute
Description copied from interface:Session
Returns the value previously stored in the session.By default, a
WRITE
lock is requested.- Specified by:
getAttribute
in interfaceSession
- Parameters:
name
- The name of the attribute
-
getAttribute
Description copied from interface:Session
Returns the value previously stored in the session.Uses the requested
Session.LockMode
to acquire an appropriate lock.- Specified by:
getAttribute
in interfaceSession
- Parameters:
name
- The name of the attribute
-
setAttribute
Description copied from interface:Session
Sets the value of an attribute. If the value isnull
, then the attribute is deleted.- Specified by:
setAttribute
in interfaceSession
- Parameters:
name
- The name of the attributevalue
- The new value of the attribute;null
deletes the attribute.
-
containsAttribute
Description copied from interface:Session
Checks if the a value is stored in the session with the specified name.By default, a
READ
lock is requested.- Specified by:
containsAttribute
in interfaceSession
- Parameters:
name
- The name of the attribute
-
containsAttribute
Description copied from interface:Session
Checks if the a value is stored in the session with the specified name.Uses the requested
Session.LockMode
to acquire an appropriate lock.- Specified by:
containsAttribute
in interfaceSession
- Parameters:
name
- The name of the attribute
-
getMaxInactiveInterval
Description copied from interface:Session
Returns 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:
getMaxInactiveInterval
in interfaceSession
-
invalidate
Description copied from interface:Session
Invalidates this session then unbinds any objects bound to it.- Specified by:
invalidate
in interfaceSession
-
isInvalidated
Description copied from interface:Session
Checks to see if the session has been invalidated. Note: since 5.3 this will also catch calls toHttpSession.invalidate()
.- Specified by:
isInvalidated
in interfaceSession
-
restoreDirtyObjects
Description copied from interface:Session
Re-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:
restoreDirtyObjects
in interfaceSession
- See Also:
-
setMaxInactiveInterval
Description copied from interface:Session
Specifies 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:
setMaxInactiveInterval
in interfaceSession
-