Uses of Class
com.nimbusds.openid.connect.sdk.claims.ClaimsSetRequest.Entry
-
Packages that use ClaimsSetRequest.Entry Package Description com.nimbusds.openid.connect.sdk Classes for representing, serialising and parsing core OpenID Connect concepts.com.nimbusds.openid.connect.sdk.assurance.claims OpenID Connect for Identity Assurance 1.0 claims.com.nimbusds.openid.connect.sdk.assurance.request OpenID Connect for Identity Assurance 1.0 request classes.com.nimbusds.openid.connect.sdk.claims Claims and claim sets used in OpenID Connect. -
-
Uses of ClaimsSetRequest.Entry in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return types with arguments of type ClaimsSetRequest.Entry Modifier and Type Method Description List<ClaimsSetRequest.Entry>
OIDCScopeValue. toClaimsSetRequestEntries()
Gets the OpenID claims request entries for this OpenID Connect scope value. -
Uses of ClaimsSetRequest.Entry in com.nimbusds.openid.connect.sdk.assurance.claims
Methods in com.nimbusds.openid.connect.sdk.assurance.claims with parameters of type ClaimsSetRequest.Entry Modifier and Type Method Description VerifiedClaimsSetRequest
VerifiedClaimsSetRequest. add(ClaimsSetRequest.Entry entry)
Deprecated.Constructor parameters in com.nimbusds.openid.connect.sdk.assurance.claims with type arguments of type ClaimsSetRequest.Entry Constructor Description VerifiedClaimsSetRequest(Collection<ClaimsSetRequest.Entry> entries, net.minidev.json.JSONObject verificationJSONObject)
Deprecated.Creates a new OpenID Connect verified claims set request. -
Uses of ClaimsSetRequest.Entry in com.nimbusds.openid.connect.sdk.assurance.request
Methods in com.nimbusds.openid.connect.sdk.assurance.request with parameters of type ClaimsSetRequest.Entry Modifier and Type Method Description VerifiedClaimsSetRequest
VerifiedClaimsSetRequest. add(ClaimsSetRequest.Entry entry)
Constructor parameters in com.nimbusds.openid.connect.sdk.assurance.request with type arguments of type ClaimsSetRequest.Entry Constructor Description VerifiedClaimsSetRequest(Collection<ClaimsSetRequest.Entry> entries, VerificationSpec verification)
Creates a new OpenID Connect verified claims set request. -
Uses of ClaimsSetRequest.Entry in com.nimbusds.openid.connect.sdk.claims
Methods in com.nimbusds.openid.connect.sdk.claims that return ClaimsSetRequest.Entry Modifier and Type Method Description ClaimsSetRequest.Entry
ClaimsSetRequest. get(String claimName)
Gets the specified claim entry from this request.ClaimsSetRequest.Entry
ClaimsSetRequest. get(String claimName, com.nimbusds.langtag.LangTag langTag)
Gets the specified claim entry from this request.static ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. parse(Map.Entry<String,net.minidev.json.JSONObject> jsonObjectEntry)
Parses an individual claim request from the specified JSON object entry.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withAdditionalInformation(Map<String,Object> additionalInformation)
Sets additional information for the requested claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withClaimRequirement(ClaimRequirement requirement)
Sets the claim requirement.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withLangTag(com.nimbusds.langtag.LangTag langTag)
Sets the language tag for the claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withPurpose(String purpose)
Sets the purpose for which the claim is requested.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withValue(Number value)
Sets the requested value (as number) for the claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withValue(Object value)
Sets the requested value (untyped) for the claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withValue(String value)
Sets the requested value (as string) for the claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withValue(net.minidev.json.JSONObject value)
Sets the requested value (as JSON object) for the claim.ClaimsSetRequest.Entry
ClaimsSetRequest.Entry. withValues(List<?> values)
Sets the requested values (untyped) for the claim.Methods in com.nimbusds.openid.connect.sdk.claims that return types with arguments of type ClaimsSetRequest.Entry Modifier and Type Method Description Collection<ClaimsSetRequest.Entry>
ClaimsSetRequest. getEntries()
Gets the request entries.Methods in com.nimbusds.openid.connect.sdk.claims with parameters of type ClaimsSetRequest.Entry Modifier and Type Method Description ClaimsSetRequest
ClaimsSetRequest. add(ClaimsSetRequest.Entry entry)
Adds the specified claim to the request.Constructor parameters in com.nimbusds.openid.connect.sdk.claims with type arguments of type ClaimsSetRequest.Entry Constructor Description ClaimsSetRequest(Collection<ClaimsSetRequest.Entry> entries)
Creates a new OpenID Connect claims set request.
-