Enum Class ActorType

java.lang.Object
java.lang.Enum<ActorType>
org.springframework.credhub.support.permissions.ActorType
All Implemented Interfaces:
Serializable, Comparable<ActorType>, Constable

public enum ActorType extends Enum<ActorType>
The types of entities that can be authorized to perform operations on CredHub credentials.
Author:
Scott Frederick
  • Enum Constant Details

    • APP

      public static final ActorType APP
      A Cloud Foundry application entity.
    • USER

      public static final ActorType USER
      A UAA user entity, as can be used with a password grant.
    • OAUTH_CLIENT

      public static final ActorType OAUTH_CLIENT
      A UAA client entity, as can be used with a client credentials grant.
  • Method Details

    • values

      public static ActorType[] 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 ActorType 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
    • getType

      public String getType()
      Get the entity type.
      Returns:
      the entity type
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ActorType>