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

com.nimbusds.openid.connect.sdk.assurance.evidences.QESEvidence 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-2016, 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.oauth2.sdk.id.Issuer;
import com.nimbusds.oauth2.sdk.util.JSONObjectUtils;
import com.nimbusds.oauth2.sdk.util.date.DateWithTimeZoneOffset;


/**
 * Qualified electronic signature (QES) used as identity evidence.
 *
 * 

Related specifications: * *

    *
  • OpenID Connect for Identity Assurance 1.0 *
* * @deprecated Use {@link ElectronicSignatureEvidence} instead. */ @Deprecated public class QESEvidence extends IdentityEvidence { /** * The QES issuer. */ private final Issuer issuer; /** * The QES serial number. */ private final String serialNumber; /** * The QES creation time. */ private final DateWithTimeZoneOffset createdAt; /** * Creates a new QES used as identity evidence. * * @param issuer The QES issuer, {@code null} if not specified. * @param serialNumber The QES serial number, {@code null} if not * specified. * @param createdAt The QES creation time, {@code null} if not * specified. */ public QESEvidence(final Issuer issuer, final String serialNumber, final DateWithTimeZoneOffset createdAt) { super(IdentityEvidenceType.QES, null); this.issuer = issuer; this.serialNumber = serialNumber; this.createdAt = createdAt; } /** * Returns the QES issuer. * @return The QES issuer, {@code null} if not specified. */ public Issuer getQESIssuer() { return issuer; } /** * Returns the QES serial number. * * @return The QES serial number string, {@code null} if not specified. */ public String getQESSerialNumberString() { return serialNumber; } /** * Returns The QES creation time. * * @return The QES creation time, {@code null} if not specified. */ public DateWithTimeZoneOffset getQESCreationTime() { return createdAt; } @Override public JSONObject toJSONObject() { JSONObject o = super.toJSONObject(); if (getQESIssuer() != null) { o.put("issuer", getQESIssuer().getValue()); } if (getQESSerialNumberString() != null) { o.put("serial_number", getQESSerialNumberString()); } if (getQESCreationTime() != null) { o.put("created_at", getQESCreationTime().toISO8601String()); } return o; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof QESEvidence)) return false; QESEvidence evidence = (QESEvidence) o; return Objects.equals(getQESIssuer(), evidence.getQESIssuer()) && Objects.equals(getQESSerialNumberString(), evidence.getQESSerialNumberString()) && Objects.equals(getQESCreationTime(), evidence.getQESCreationTime()); } @Override public int hashCode() { return Objects.hash(getQESIssuer(), getQESSerialNumberString(), getQESCreationTime()); } /** * Parses a new QES evidence from the specified JSON object. * * @param jsonObject The JSON object. Must not be {@code null}. * * @return The QES evidence. * * @throws ParseException If parsing failed. */ public static QESEvidence parse(final JSONObject jsonObject) throws ParseException { ensureType(IdentityEvidenceType.QES, jsonObject); Issuer issuer = null; if (jsonObject.get("issuer") != null) { issuer = new Issuer(JSONObjectUtils.getString(jsonObject, "issuer")); } String serialNumber = JSONObjectUtils.getString(jsonObject, "serial_number", null); DateWithTimeZoneOffset createdAt = null; if (jsonObject.get("created_at") != null) { createdAt = DateWithTimeZoneOffset.parseISO8601String(JSONObjectUtils.getString(jsonObject, "created_at")); } return new QESEvidence(issuer, serialNumber, createdAt); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy