Enum Class PersistenceLevel

java.lang.Object
java.lang.Enum<PersistenceLevel>
com.aquima.interactions.portal.PersistenceLevel
All Implemented Interfaces:
Serializable, Comparable<PersistenceLevel>, Constable

public enum PersistenceLevel extends Enum<PersistenceLevel>
The persistence level for a content persisted in an IConnection using an IContentManager. A temporary persistence level indicates that the persisted content is going to be deleted from the connection when an event occurs (eg. a request or session ends, a certain amount of time passes, etc). A permanent persistence level indicates that the persisted content has to be explicitly deleted using IContentManager when no longer needed.
Since:
11.0
Author:
Petru Galanton
  • Enum Constant Details

  • Method Details

    • values

      public static PersistenceLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PersistenceLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • parse

      public static PersistenceLevel parse(String value)