Package com.sap.cloud.security.token
Enum GrantType
- java.lang.Object
-
- java.lang.Enum<GrantType>
-
- com.sap.cloud.security.token.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 Summary
Enum Constants Enum Constant Description AUTHORIZATION_CODECLIENT_CREDENTIALSCLIENT_X509Deprecated.SAP proprietary grant type.JWT_BEARERPASSWORDREFRESH_TOKENSAML2_BEARERUSER_TOKENDeprecated.in favor ofJWT_BEARER.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GrantTypefrom(String claimName)StringtoString()static GrantTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GrantType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_CREDENTIALS
public static final GrantType CLIENT_CREDENTIALS
-
USER_TOKEN
@Deprecated public static final GrantType USER_TOKEN
Deprecated.in favor ofJWT_BEARER.
-
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 nameNullPointerException- if the argument is null
-
-