Uses of Class
com.nimbusds.openid.connect.sdk.ClaimsRequest.Entry
Packages that use ClaimsRequest.Entry
Package
Description
Classes for representing, serialising and parsing core OpenID Connect
concepts.
-
Uses of ClaimsRequest.Entry in com.nimbusds.openid.connect.sdk
Methods in com.nimbusds.openid.connect.sdk that return ClaimsRequest.EntryModifier and TypeMethodDescriptionClaimsRequest.removeIDTokenClaim(String claimName, com.nimbusds.langtag.LangTag langTag) Deprecated.Removes the specified ID token claim from the request.ClaimsRequest.removeUserInfoClaim(String claimName, com.nimbusds.langtag.LangTag langTag) Deprecated.Removes the specified UserInfo claim from the request.ClaimsRequest.removeVerifiedIDTokenClaim(String claimName, com.nimbusds.langtag.LangTag langTag) Deprecated.Removes the specified verified ID token claim from the request.ClaimsRequest.removeVerifiedUserInfoClaim(String claimName, com.nimbusds.langtag.LangTag langTag) Deprecated.Removes the specified verified UserInfo claim from the request.ClaimsRequest.Entry.withAdditionalInformation(Map<String, Object> additionalInformation) Returns a new claim entry with the specified additional information for the claim.ClaimsRequest.Entry.withClaimRequirement(ClaimRequirement requirement) Returns a new claim entry with the specified requirement.ClaimsRequest.Entry.withLangTag(com.nimbusds.langtag.LangTag langTag) Returns a new claim entry with the specified language tag for the claim.ClaimsRequest.Entry.withPurpose(String purpose) Returns a new claim entry with the specified purpose for the requested claim.Returns a new claim entry with the specified requested value for the claim.ClaimsRequest.Entry.withValues(List<String> values) Returns a new claim entry with the specified requested values for the claim.Methods in com.nimbusds.openid.connect.sdk that return types with arguments of type ClaimsRequest.EntryModifier and TypeMethodDescriptionClaimsRequest.getIDTokenClaims()Deprecated.Gets the requested ID token claims.ClaimsRequest.getUserInfoClaims()Deprecated.Gets the requested UserInfo claims.ClaimsRequest.getVerifiedIDTokenClaims()Deprecated.Gets the requested verified ID token claims.ClaimsRequest.getVerifiedUserInfoClaims()Deprecated.Gets the requested verified UserInfo claims.static Collection<ClaimsRequest.Entry>ClaimsRequest.Entry.parseEntries(net.minidev.json.JSONObject jsonObject) Parses a collection of individual claim requests from the specified JSON object.ClaimsRequest.removeIDTokenClaims(String claimName) Deprecated.Removes the specified ID token claims from the request, in all existing language tag variations.ClaimsRequest.removeUserInfoClaims(String claimName) Deprecated.Removes the specified UserInfo claims from the request, in all existing language tag variations.ClaimsRequest.removeVerifiedIDTokenClaims(String claimName) Deprecated.Removes the specified verified ID token claims from the request, in all existing language tag variations.ClaimsRequest.removeVerifiedUserInfoClaims(String claimName) Deprecated.Removes the specified verified UserInfo claims from the request, in all existing language tag variations.OIDCScopeValue.toClaimsRequestEntries()Deprecated.Methods in com.nimbusds.openid.connect.sdk with parameters of type ClaimsRequest.EntryModifier and TypeMethodDescriptionvoidClaimsRequest.addIDTokenClaim(ClaimsRequest.Entry entry) Deprecated.Adds the specified ID token claim to the request.voidClaimsRequest.addUserInfoClaim(ClaimsRequest.Entry entry) Deprecated.Adds the specified UserInfo claim to the request.voidClaimsRequest.addVerifiedIDTokenClaim(ClaimsRequest.Entry entry) Deprecated.Adds the specified verified ID token claim to the request.voidClaimsRequest.addVerifiedUserInfoClaim(ClaimsRequest.Entry entry) Deprecated.Adds the specified verified UserInfo claim to the request.Method parameters in com.nimbusds.openid.connect.sdk with type arguments of type ClaimsRequest.EntryModifier and TypeMethodDescriptionstatic net.minidev.json.JSONObjectClaimsRequest.Entry.toJSONObject(Collection<ClaimsRequest.Entry> entries) Returns the JSON object representation of the specified collection of individual claim requests.