Enum GrantType

  • All Implemented Interfaces:
    Serializable, Comparable<GrantType>

    public enum GrantType
    extends Enum<GrantType>
    Constants denoting the grant type of a Jwt access token as specified here: https://tools.ietf.org/html/rfc6749
    • Enum Constant Detail

      • 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
      • CLIENT_X509

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

        public static final GrantType AUTHORIZATION_CODE
    • Method Detail

      • values

        public static GrantType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (GrantType c : GrantType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GrantType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null