Package org.apache.tapestry5.services
Interface ApplicationStateCreator<T>
-
- Type Parameters:
T
- the type of the created objects
public interface ApplicationStateCreator<T>
Used byApplicationStateManager
andApplicationStatePersistenceStrategy
to create a Session State Object (SSO) on demand.NOTE: The term "Application" here is a hold-over from Tapestry 5.0, which used the @ApplicationState (deprecated and deleted) annotation, and called them "ASOs" (Application State Objects). This service would be better named "SessionStateCreator" (but renaming it would cause backwards compatibility issues).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
create()
Create a new instance of a session state object.
-