Class SessionApplicationStatePersistenceStrategy
- java.lang.Object
-
- org.apache.tapestry5.internal.services.SessionApplicationStatePersistenceStrategy
-
- All Implemented Interfaces:
ApplicationStatePersistenceStrategy
- Direct Known Subclasses:
EntityApplicationStatePersistenceStrategy
,EntityApplicationStatePersistenceStrategy
public class SessionApplicationStatePersistenceStrategy extends Object implements ApplicationStatePersistenceStrategy
Stores ASOs in theSession
, which will be created as necessary.
-
-
Constructor Summary
Constructors Constructor Description SessionApplicationStatePersistenceStrategy(Request request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected <T> String
buildKey(Class<T> ssoClass)
<T> boolean
exists(Class<T> ssoClass)
Returns true if the SSO already exists, false if null.<T> T
get(Class<T> ssoClass, ApplicationStateCreator<T> creator)
Gets the SSO from the domain.<T> T
getIfExists(Class<T> ssoClass)
Returns the SSO if it exists or null.protected <T> Object
getOrCreate(Class<T> ssoClass, ApplicationStateCreator<T> creator)
protected Session
getSession()
<T> void
set(Class<T> ssoClass, T sso)
Stores a new SSO, possibly replacing the existing one.
-
-
-
Constructor Detail
-
SessionApplicationStatePersistenceStrategy
public SessionApplicationStatePersistenceStrategy(Request request)
-
-
Method Detail
-
getSession
protected Session getSession()
-
get
public <T> T get(Class<T> ssoClass, ApplicationStateCreator<T> creator)
Description copied from interface:ApplicationStatePersistenceStrategy
Gets the SSO from the domain. If the SSO does not already exist, it is created and stored, then returned.- Specified by:
get
in interfaceApplicationStatePersistenceStrategy
-
getOrCreate
protected <T> Object getOrCreate(Class<T> ssoClass, ApplicationStateCreator<T> creator)
-
getIfExists
public <T> T getIfExists(Class<T> ssoClass)
Description copied from interface:ApplicationStatePersistenceStrategy
Returns the SSO if it exists or null.- Specified by:
getIfExists
in interfaceApplicationStatePersistenceStrategy
-
set
public <T> void set(Class<T> ssoClass, T sso)
Description copied from interface:ApplicationStatePersistenceStrategy
Stores a new SSO, possibly replacing the existing one.- Specified by:
set
in interfaceApplicationStatePersistenceStrategy
sso
- instance to store, or null to delete existing
-
exists
public <T> boolean exists(Class<T> ssoClass)
Description copied from interface:ApplicationStatePersistenceStrategy
Returns true if the SSO already exists, false if null.- Specified by:
exists
in interfaceApplicationStatePersistenceStrategy
-
-