Package org.forgerock.openidconnect
Class Claim
- java.lang.Object
 - 
- org.forgerock.oauth.clients.oidc.Claim
 - 
- org.forgerock.openidconnect.Claim
 
 
 
- 
@Deprecated @SupportedAll public class Claim extends Claim
Deprecated.useClaimModels an OpenID Connect claim that has been requested in an authorize request. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classClaim.ClaimBuilderDeprecated.Builder to keep theClaimimmutable. 
 - 
 
- 
- 
Constructor Detail
- 
Claim
@Deprecated public Claim(String name)
Deprecated.Creates a new Claim.- Parameters:
 name- the name of the claim
 
- 
Claim
@Deprecated public Claim(String name, Object value)
Deprecated.Creates a new claim with single requested value.- Parameters:
 name- the name of the claimvalue- the requested value
 
- 
Claim
@Deprecated public Claim(String name, List<Object> values)
Deprecated.Creates a new claim with multiple requested values.- Parameters:
 name- the name of the claimvalues- the requested values
 
- 
Claim
@Deprecated public Claim(String name, List<Object> values, boolean essential)
Deprecated.Creates a new claim with multiple requested values.- Parameters:
 name- the name of the claimvalues- the requested valuesessential- whether this claim is deemed essential
 
 - 
 
 -