Class PersistenceConstants

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String CLIENT
      The field's value is stored on the client, as a query parameter or hidden form field.
      static java.lang.String FLASH
      The field's value is stored in the session, but only until the next request.
      static java.lang.String SESSION
      The field's value is stored in the Session.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • CLIENT

        public static final java.lang.String CLIENT
        The field's value is stored on the client, as a query parameter or hidden form field.
        See Also:
        Constant Field Values
      • FLASH

        public static final java.lang.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