Enum OIDCClientInformationSignatureValidationParametersResolver.ParameterType
- java.lang.Object
-
- java.lang.Enum<OIDCClientInformationSignatureValidationParametersResolver.ParameterType>
-
- net.shibboleth.idp.plugin.oidc.op.security.impl.OIDCClientInformationSignatureValidationParametersResolver.ParameterType
-
- All Implemented Interfaces:
Serializable,Comparable<OIDCClientInformationSignatureValidationParametersResolver.ParameterType>
- Enclosing class:
- OIDCClientInformationSignatureValidationParametersResolver
public static enum OIDCClientInformationSignatureValidationParametersResolver.ParameterType extends Enum<OIDCClientInformationSignatureValidationParametersResolver.ParameterType>
Whether to create parameters for request object signature validation or token endpoint JWT validation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REQUEST_OBJECT_VALIDATIONType for request object validation.TOKEN_ENDPOINT_JWT_VALIDATIONType for token endpoint JWT validation.
-
Constructor Summary
Constructors Modifier Constructor Description privateParameterType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OIDCClientInformationSignatureValidationParametersResolver.ParameterTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OIDCClientInformationSignatureValidationParametersResolver.ParameterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUEST_OBJECT_VALIDATION
public static final OIDCClientInformationSignatureValidationParametersResolver.ParameterType REQUEST_OBJECT_VALIDATION
Type for request object validation.
-
TOKEN_ENDPOINT_JWT_VALIDATION
public static final OIDCClientInformationSignatureValidationParametersResolver.ParameterType TOKEN_ENDPOINT_JWT_VALIDATION
Type for token endpoint JWT validation.
-
-
Method Detail
-
values
public static OIDCClientInformationSignatureValidationParametersResolver.ParameterType[] 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 (OIDCClientInformationSignatureValidationParametersResolver.ParameterType c : OIDCClientInformationSignatureValidationParametersResolver.ParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OIDCClientInformationSignatureValidationParametersResolver.ParameterType 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
-
-