All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.openid.connect.sdk.assurance.claims.VerifiedClaimsSetRequest Maven / Gradle / Ivy

Go to download

OAuth 2.0 SDK with OpenID Connection extensions for developing client and server applications.

There is a newer version: 11.19.1
Show newest version
/*
 * oauth2-oidc-sdk
 *
 * Copyright 2012-2020, Connect2id Ltd and contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use
 * this file except in compliance with the License. You may obtain a copy of the
 * License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed
 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */

package com.nimbusds.openid.connect.sdk.assurance.claims;


import java.util.Collection;

import net.jcip.annotations.Immutable;
import net.minidev.json.JSONObject;

import com.nimbusds.langtag.LangTag;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.oauth2.sdk.util.JSONObjectUtils;
import com.nimbusds.openid.connect.sdk.claims.ClaimsSetRequest;


/**
 * OpenID Connect verified claims set request, intended to represent the
 * {@code verified_claims} sub-element within a {@code userinfo} or
 * {@code id_token} element in a
 * {@link com.nimbusds.openid.connect.sdk.OIDCClaimsRequest claims} request
 * parameter.
 *
 * 

Example: * *

 * {
 *   "verification": {
 *      "trust_framework": "eidas_ial"
 *   },
 *   "claims":{
 *      "given_name": null,
 *      "family_name": null,
 *      "birthdate": null
 *   }
 * }
 * 
* *

Related specifications: * *

    *
  • OpenID Connect Core 1.0 *
  • OpenID Connect for Identity Assurance 1.0 *
* * @deprecated Use * {@link com.nimbusds.openid.connect.sdk.assurance.request.VerifiedClaimsSetRequest} * instead. */ @Deprecated @Immutable public class VerifiedClaimsSetRequest extends ClaimsSetRequest { /** * The verification element for the requested verified claims. */ private final JSONObject verificationJSONObject; /** * Creates a new empty OpenID Connect verified claims set request. */ public VerifiedClaimsSetRequest() { super(); verificationJSONObject = null; } /** * Creates a new OpenID Connect verified claims set request. * * @param entries The request entries. Must not be * {@code null}. * @param verificationJSONObject The verification JSON object, * {@code null} if not specified. */ public VerifiedClaimsSetRequest(final Collection entries, final JSONObject verificationJSONObject) { super(entries); this.verificationJSONObject = verificationJSONObject; } /** * Gets the {@code verification} element. * * @return The {@code verification} JSON object, {@code null} if not * specified. */ public JSONObject getVerificationJSONObject() { return verificationJSONObject; } /** * Sets the {@code verification} element. * * @param jsonObject The {@code verification} JSON object, {@code null} * if not specified. * * @return The updated verified claims set request. */ public VerifiedClaimsSetRequest withVerificationJSONObject(final JSONObject jsonObject) { return new VerifiedClaimsSetRequest(getEntries(), jsonObject); } @Override public VerifiedClaimsSetRequest add(final String claimName) { ClaimsSetRequest csr = add(new ClaimsSetRequest.Entry(claimName)); return new VerifiedClaimsSetRequest(csr.getEntries(), getVerificationJSONObject()); } @Override public VerifiedClaimsSetRequest add(final ClaimsSetRequest.Entry entry) { ClaimsSetRequest csr = super.add(entry); return new VerifiedClaimsSetRequest(csr.getEntries(), getVerificationJSONObject()); } @Override public VerifiedClaimsSetRequest delete(final String claimName, final LangTag langTag) { ClaimsSetRequest csr = super.delete(claimName, langTag); return new VerifiedClaimsSetRequest(csr.getEntries(), getVerificationJSONObject()); } @Override public VerifiedClaimsSetRequest delete(final String claimName) { ClaimsSetRequest csr = super.delete(claimName); return new VerifiedClaimsSetRequest(csr.getEntries(), getVerificationJSONObject()); } /** * Returns the JSON object representation of this verified claims set * request. * *

Example: * *

	 * {
	 *   "verification": {
	 *      "trust_framework": "eidas"
	 *   },
	 *   "claims":{
	 *      "given_name": null,
	 *      "family_name": null,
	 *      "birthdate": null
	 *   }
	 * }
	 * 
* * @return The JSON object, empty if no claims are specified. */ @Override public JSONObject toJSONObject() { JSONObject o = new JSONObject(); if (verificationJSONObject != null && ! verificationJSONObject.isEmpty()) { o.put(VerifiedClaimsSet.VERIFICATION_ELEMENT, verificationJSONObject); } JSONObject claims = super.toJSONObject(); if (claims != null && ! claims.isEmpty()) { o.put(VerifiedClaimsSet.CLAIMS_ELEMENT, claims); } return o; } /** * Parses an OpenID Connect verified claims set request from the * specified JSON object representation. * *

Example: * *

	 * {
	 *   "verification": {
	 *      "trust_framework": "eidas"
	 *   },
	 *   "claims":{
	 *      "given_name": null,
	 *      "family_name": null,
	 *      "birthdate": null
	 *   }
	 * }
	 * 
* * @param jsonObject The JSON object to parse. Must not be * {@code null}. * * @return The verified claims set request. * * @throws ParseException If parsing failed. */ public static VerifiedClaimsSetRequest parse(final JSONObject jsonObject) throws ParseException { JSONObject verificationJSONObject = JSONObjectUtils.getJSONObject(jsonObject, VerifiedClaimsSet.VERIFICATION_ELEMENT, null); JSONObject claimsJSONObject = JSONObjectUtils.getJSONObject(jsonObject, VerifiedClaimsSet.CLAIMS_ELEMENT, new JSONObject()); if (claimsJSONObject.isEmpty()) { throw new ParseException("Empty verified claims object"); } return new VerifiedClaimsSetRequest( ClaimsSetRequest.parse(claimsJSONObject).getEntries(), verificationJSONObject); } /** * Parses an OpenID Connect verified claims set request from the * specified JSON object string representation. * *

Example: * *

	 * {
	 *   "verification": {
	 *      "trust_framework": "eidas"
	 *   },
	 *   "claims":{
	 *      "given_name": null,
	 *      "family_name": null,
	 *      "birthdate": null
	 *   }
	 * }
	 * 
* * @param json The JSON object string to parse. Must not be * {@code null}. * * @return The verified claims set request. * * @throws ParseException If parsing failed. */ public static VerifiedClaimsSetRequest parse(final String json) throws ParseException { return parse(JSONObjectUtils.parse(json)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy