Enum Class GrantType

java.lang.Object
java.lang.Enum<GrantType>
com.sap.cloud.security.token.GrantType
All Implemented Interfaces:
Serializable, Comparable<GrantType>, Constable

public enum GrantType extends Enum<GrantType>
Constants denoting the grant type of a Jwt access token as specified here:
  • Enum Constant Details

    • CLIENT_CREDENTIALS

      public static final GrantType CLIENT_CREDENTIALS
    • REFRESH_TOKEN

      public static final GrantType REFRESH_TOKEN
    • PASSWORD

      public static final GrantType PASSWORD
    • JWT_BEARER

      public static final GrantType JWT_BEARER
    • SAML2_BEARER

      public static final GrantType SAML2_BEARER
    • USER_TOKEN

      @Deprecated public static final GrantType USER_TOKEN
      Deprecated.
      in favor of JWT_BEARER.
    • CLIENT_X509

      @Deprecated public static final GrantType CLIENT_X509
      Deprecated.
      SAP proprietary grant type.
    • AUTHORIZATION_CODE

      public static final GrantType AUTHORIZATION_CODE
  • Method Details

    • values

      public static GrantType[] 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 GrantType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<GrantType>
    • from

      @Nullable public static GrantType from(String claimName)