java.lang.Object
java.lang.Enum<AccessLevel>
org.springframework.boot.actuate.autoconfigure.cloudfoundry.AccessLevel
All Implemented Interfaces:
Serializable, Comparable<AccessLevel>, Constable

public enum AccessLevel extends Enum<AccessLevel>
The specific access level granted to the cloud foundry user that's calling the endpoints.
Since:
2.0.0
Author:
Madhura Bhave
  • Enum Constant Details

    • RESTRICTED

      public static final AccessLevel RESTRICTED
      Restricted access to a limited set of endpoints.
    • FULL

      public static final AccessLevel FULL
      Full access to all endpoints.
  • Field Details

  • Method Details

    • values

      public static AccessLevel[] 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 AccessLevel 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
    • isAccessAllowed

      public boolean isAccessAllowed(String id)
      Returns if the access level should allow access to the specified ID.
      Parameters:
      id - the ID to check
      Returns:
      true if access is allowed