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> StringbuildKey(Class<T> ssoClass)<T> booleanexists(Class<T> ssoClass)Returns true if the SSO already exists, false if null.<T> Tget(Class<T> ssoClass, ApplicationStateCreator<T> creator)Gets the SSO from the domain.<T> TgetIfExists(Class<T> ssoClass)Returns the SSO if it exists or null.protected <T> ObjectgetOrCreate(Class<T> ssoClass, ApplicationStateCreator<T> creator)protected SessiongetSession()<T> voidset(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:ApplicationStatePersistenceStrategyGets the SSO from the domain. If the SSO does not already exist, it is created and stored, then returned.- Specified by:
 getin interfaceApplicationStatePersistenceStrategy
 
- 
getOrCreate
protected <T> Object getOrCreate(Class<T> ssoClass, ApplicationStateCreator<T> creator)
 
- 
getIfExists
public <T> T getIfExists(Class<T> ssoClass)
Description copied from interface:ApplicationStatePersistenceStrategyReturns the SSO if it exists or null.- Specified by:
 getIfExistsin interfaceApplicationStatePersistenceStrategy
 
- 
set
public <T> void set(Class<T> ssoClass, T sso)
Description copied from interface:ApplicationStatePersistenceStrategyStores a new SSO, possibly replacing the existing one.- Specified by:
 setin interfaceApplicationStatePersistenceStrategysso- instance to store, or null to delete existing
 
- 
exists
public <T> boolean exists(Class<T> ssoClass)
Description copied from interface:ApplicationStatePersistenceStrategyReturns true if the SSO already exists, false if null.- Specified by:
 existsin interfaceApplicationStatePersistenceStrategy
 
 - 
 
 -