Package org.apache.tapestry5.services
Class ApplicationStateContribution
- java.lang.Object
-
- org.apache.tapestry5.services.ApplicationStateContribution
-
public final class ApplicationStateContribution extends Object
A contribution to the configuration of theApplicationStateManager
, identifying the strategy and creator for a particular Session State Object (SSO), identified by the SSO's class.
-
-
Constructor Summary
Constructors Constructor Description ApplicationStateContribution(String strategy)
ApplicationStateContribution(String strategy, ApplicationStateCreator creator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationStateCreator
getCreator()
The creator for the ASO.String
getStrategy()
The name of the strategy used to control where the ASO is stored.
-
-
-
Constructor Detail
-
ApplicationStateContribution
public ApplicationStateContribution(String strategy)
-
ApplicationStateContribution
public ApplicationStateContribution(String strategy, ApplicationStateCreator creator)
-
-
Method Detail
-
getCreator
public ApplicationStateCreator getCreator()
The creator for the ASO. If null, the the ASO is created directly from the ASO class, via its public no-arguments constructor.
-
getStrategy
public String getStrategy()
The name of the strategy used to control where the ASO is stored.
-
-