Enum Class PermissionUpdateType

java.lang.Object
java.lang.Enum<PermissionUpdateType>
com.caplin.server.auth.PermissionUpdateType
All Implemented Interfaces:
Serializable, Comparable<PermissionUpdateType>, Constable

public enum PermissionUpdateType extends Enum<PermissionUpdateType>

Enum defining the type of update passed to the authenticator permission methods (checkPermissionUpdate() and globalPermissionUpdate).

See Also:
  • Enum Constant Details

    • ADD

      public static final PermissionUpdateType ADD
      The associated permission update if for a new permission key
    • DELETE

      public static final PermissionUpdateType DELETE
      The associated permission update is a delete for an existing permission key
    • UPDATE

      public static final PermissionUpdateType UPDATE
      The associated permission update is an update to an existing permission object
  • Method Details

    • values

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