Package org.apache.tapestry5
Class PersistenceConstants
- java.lang.Object
- 
- org.apache.tapestry5.PersistenceConstants
 
- 
 public class PersistenceConstants extends Object Constants for persistent field strategies.- See Also:
- Persist.value()
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringCLIENTThe field's value is stored on the client, as a query parameter or hidden form field.static StringFLASHThe field's value is stored in the session, but only until the next request.static StringSESSIONThe field's value is stored in theSession.
 - 
Constructor SummaryConstructors Constructor Description PersistenceConstants()
 
- 
- 
- 
Field Detail- 
SESSIONpublic static final String SESSION The field's value is stored in theSession.- See Also:
- Constant Field Values
 
 - 
CLIENTpublic static final String CLIENT The field's value is stored on the client, as a query parameter or hidden form field.- See Also:
- Constant Field Values
 
 - 
FLASHpublic static final String FLASH The field's value is stored in the session, but only until the next request. This is often used for confirmation messages presented to the user.- See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
PersistenceConstantspublic PersistenceConstants() 
 
- 
 
-