Enum OIDCClientInformationSignatureSigningParametersResolver.ParameterType
- java.lang.Object
-
- java.lang.Enum<OIDCClientInformationSignatureSigningParametersResolver.ParameterType>
-
- net.shibboleth.idp.plugin.oidc.op.security.impl.OIDCClientInformationSignatureSigningParametersResolver.ParameterType
-
- All Implemented Interfaces:
Serializable,Comparable<OIDCClientInformationSignatureSigningParametersResolver.ParameterType>
- Enclosing class:
- OIDCClientInformationSignatureSigningParametersResolver
public static enum OIDCClientInformationSignatureSigningParametersResolver.ParameterType extends Enum<OIDCClientInformationSignatureSigningParametersResolver.ParameterType>
Whether to create parameters for id token signing or userinfo response signing.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDTOKEN_SIGNINGType for id_token signing.USERINFO_SIGNINGType for user info signing.
-
Constructor Summary
Constructors Modifier Constructor Description privateParameterType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OIDCClientInformationSignatureSigningParametersResolver.ParameterTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OIDCClientInformationSignatureSigningParametersResolver.ParameterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDTOKEN_SIGNING
public static final OIDCClientInformationSignatureSigningParametersResolver.ParameterType IDTOKEN_SIGNING
Type for id_token signing.
-
USERINFO_SIGNING
public static final OIDCClientInformationSignatureSigningParametersResolver.ParameterType USERINFO_SIGNING
Type for user info signing.
-
-
Method Detail
-
values
public static OIDCClientInformationSignatureSigningParametersResolver.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 (OIDCClientInformationSignatureSigningParametersResolver.ParameterType c : OIDCClientInformationSignatureSigningParametersResolver.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 OIDCClientInformationSignatureSigningParametersResolver.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
-
-