Enum ClaimType
- All Implemented Interfaces:
Serializable,Comparable<ClaimType>,java.lang.constant.Constable
Enumeration of the claim types.
Related specifications:
- OpenID Connect Core 1.0, section 5.6.
- OpenID Connect Discovery 1.0, section 3.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionClaims that are asserted by a claims provider other than the OpenID Connect Provider but are returned by OpenID Connect provider.Claims that are asserted by a claims provider other than the OpenID Connect provider but are returned as references by the OpenID Connect provider.Claims that are directly asserted by the OpenID Connect provider. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClaimTypeParses a claim type.toString()Returns the string identifier of this claim type.static ClaimTypeReturns the enum constant of this type with the specified name.static ClaimType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NORMAL
Claims that are directly asserted by the OpenID Connect provider. -
AGGREGATED
Claims that are asserted by a claims provider other than the OpenID Connect Provider but are returned by OpenID Connect provider. -
DISTRIBUTED
Claims that are asserted by a claims provider other than the OpenID Connect provider but are returned as references by the OpenID Connect provider.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
Returns the string identifier of this claim type. -
parse
Parses a claim type.- Parameters:
s- The string to parse. Must not benull.- Returns:
- The claim type.
- Throws:
ParseException- If parsing failed.
-