Enum Class SecurityAccessLevel

java.lang.Object
java.lang.Enum<SecurityAccessLevel>
com.i2group.apollo.model.data.transport.SecurityAccessLevel
All Implemented Interfaces:
Serializable, Comparable<SecurityAccessLevel>, Constable

public enum SecurityAccessLevel extends Enum<SecurityAccessLevel>
Indicates the level of access that a user has to some data.
Since:
1.0
  • Enum Constant Details

    • NONE

      public static final SecurityAccessLevel NONE
      The user has no access to the data. They may not read it, and they may not even be told that it exists.
    • READ_CLOAKED

      public static final SecurityAccessLevel READ_CLOAKED
      The user may see that the data exists, and the system may look at the data on the user's behalf (when searching, for example), but the user cannot see the data directly.
    • READ_ONLY

      public static final SecurityAccessLevel READ_ONLY
      The user has direct, read-only access to the data.
    • UPDATE

      public static final SecurityAccessLevel UPDATE
      The user can read, modify, and delete the data.
  • Method Details

    • values

      public static SecurityAccessLevel[] 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 SecurityAccessLevel 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