com.nimbusds.openid.connect.sdk.assurance.evidences.DocumentIssuer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
/*
* oauth2-oidc-sdk
*
* Copyright 2012-2021, 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.evidences;
import java.util.Objects;
import net.minidev.json.JSONObject;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.openid.connect.sdk.assurance.claims.CountryCode;
import com.nimbusds.openid.connect.sdk.claims.Address;
/**
* Document issuer.
*
* Related specifications:
*
*
* - OpenID Connect for Identity Assurance 1.0, section 5.1.1.1.
*
*/
public class DocumentIssuer extends CommonOriginatorAttributes {
/**
* Creates a new document issuer.
*
* @param name The issuer name, {@code null} if not specified.
* @param address The issuer address elements, {@code null} if not
* specified.
* @param countryCode The issuer country code, {@code null} if not
* specified.
* @param jurisdiction The issuer jurisdiction, {@code null} if not
* specified.
*/
public DocumentIssuer(final Name name,
final Address address,
final CountryCode countryCode,
final Jurisdiction jurisdiction) {
super(name, address, countryCode, jurisdiction);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof DocumentIssuer)) return false;
DocumentIssuer that = (DocumentIssuer) o;
return Objects.equals(
getName(), that.getName()) &&
Objects.equals(getAddress(), that.getAddress()) &&
Objects.equals(getCountryCode(), that.getCountryCode()) &&
Objects.equals(getJurisdiction(), that.getJurisdiction());
}
/**
* Parses a document issuer from the specified JSON object.
*
* @param jsonObject The JSON object. Must not be {@code null}.
*
* @return The document issuer.
*
* @throws ParseException If parsing failed.
*/
public static DocumentIssuer parse(final JSONObject jsonObject)
throws ParseException {
CommonOriginatorAttributes commonOriginatorAttributes = CommonOriginatorAttributes.parse(jsonObject);
return new DocumentIssuer(
commonOriginatorAttributes.getName(),
commonOriginatorAttributes.getAddress(),
commonOriginatorAttributes.getCountryCode(),
commonOriginatorAttributes.getJurisdiction()
);
}
}