Package org.apache.tapestry5
Class PersistenceConstants
java.lang.Object
org.apache.tapestry5.PersistenceConstants
Constants for persistent field strategies.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The field's value is stored on the client, as a query parameter or hidden form field.static final String
The field's value is stored in the session, but only until the next request.static final String
The field's value is stored in theSession
. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
SESSION
The field's value is stored in theSession
.- See Also:
-
CLIENT
The field's value is stored on the client, as a query parameter or hidden form field.- See Also:
-
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:
-
-
Constructor Details
-
PersistenceConstants
public PersistenceConstants()
-