Package org.openiam.constants
Enum OAuth2AttributeId
- java.lang.Object
-
- java.lang.Enum<OAuth2AttributeId>
-
- org.openiam.constants.OAuth2AttributeId
-
- All Implemented Interfaces:
Serializable
,Comparable<OAuth2AttributeId>
public enum OAuth2AttributeId extends Enum<OAuth2AttributeId>
Created by Alexander Dukkardt on 2017-02-28.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OAuth2AttributeId
valueOf(String name)
Returns the enum constant of this type with the specified name.static OAuth2AttributeId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OAuthClientScopes
public static final OAuth2AttributeId OAuthClientScopes
-
OAuthClientID
public static final OAuth2AttributeId OAuthClientID
-
APPLE_ID_CLIENT_ID
public static final OAuth2AttributeId APPLE_ID_CLIENT_ID
-
OAuthClientSecret
public static final OAuth2AttributeId OAuthClientSecret
-
OAuthRedirectUrl
public static final OAuth2AttributeId OAuthRedirectUrl
-
OAuthTokenExpiration
public static final OAuth2AttributeId OAuthTokenExpiration
-
OAuthAuthorizationGrantFlow
public static final OAuth2AttributeId OAuthAuthorizationGrantFlow
-
OAuthUseRefreshToken
public static final OAuth2AttributeId OAuthUseRefreshToken
-
IsSendIdTokenAsAccessToken
public static final OAuth2AttributeId IsSendIdTokenAsAccessToken
-
OAuthClientSkipAllowDialog
public static final OAuth2AttributeId OAuthClientSkipAllowDialog
-
IsMultiActiveTokenAllowed
public static final OAuth2AttributeId IsMultiActiveTokenAllowed
-
OAuthClientAuthType
public static final OAuth2AttributeId OAuthClientAuthType
-
JwtAlgorithm
public static final OAuth2AttributeId JwtAlgorithm
-
JwtIssue
public static final OAuth2AttributeId JwtIssue
-
ProtectedBy2FA
public static final OAuth2AttributeId ProtectedBy2FA
-
ClientJwtAuthValidationURL
public static final OAuth2AttributeId ClientJwtAuthValidationURL
-
ClientJwtAuthValidationKey
public static final OAuth2AttributeId ClientJwtAuthValidationKey
-
OpenIAMPublicApplicationKey
public static final OAuth2AttributeId OpenIAMPublicApplicationKey
-
OAUTH_CLIENT_ASSERTION_TYPE
public static final OAuth2AttributeId OAUTH_CLIENT_ASSERTION_TYPE
-
SEND_ID_TOKEN_AS_ACCESS_TOKEN
public static final OAuth2AttributeId SEND_ID_TOKEN_AS_ACCESS_TOKEN
-
-
Method Detail
-
values
public static OAuth2AttributeId[] 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 (OAuth2AttributeId c : OAuth2AttributeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OAuth2AttributeId 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
-
-