Package org.forgerock.openidconnect
Class Claim
java.lang.Object
org.forgerock.oauth.clients.oidc.Claim
org.forgerock.openidconnect.Claim
Deprecated, for removal: This API element is subject to removal in a future version.
Models an OpenID Connect claim that has been requested in an authorize request.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classDeprecated, for removal: This API element is subject to removal in a future version.Builder to keep theClaimimmutable. -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Methods inherited from class org.forgerock.oauth.clients.oidc.Claim
equals, getJavaLocale, getLocale, getName, getNameWithLocale, getValues, hashCode, isEssential, toString
-
Constructor Details
-
Claim
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new Claim.- Parameters:
name- the name of the claim
-
Claim
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new claim with single requested value.- Parameters:
name- the name of the claimvalue- the requested value
-
Claim
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new claim with multiple requested values.- Parameters:
name- the name of the claimvalues- the requested values
-
Claim
@Deprecated(since="8.0.0", forRemoval=true) public Claim(String name, List<Object> values, boolean essential) Deprecated, for removal: This API element is subject to removal in a future version.Creates a new claim with multiple requested values.- Parameters:
name- the name of the claimvalues- the requested valuesessential- whether this claim is deemed essential
-
Claim