com.nimbusds.openid.connect.sdk.assurance.evidences.VerificationMethod 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.jcip.annotations.Immutable;
import net.minidev.json.JSONObject;
import com.nimbusds.oauth2.sdk.ParseException;
import com.nimbusds.oauth2.sdk.util.JSONObjectUtils;
import com.nimbusds.openid.connect.sdk.assurance.Policy;
import com.nimbusds.openid.connect.sdk.assurance.Procedure;
import com.nimbusds.openid.connect.sdk.assurance.Status;
/**
* Verification method establishing a given user owns a set of provided claims.
*
* Related specifications:
*
*
* - OpenID Connect for Identity Assurance 1.0, section 5.1.1.
*
*/
@Immutable
public final class VerificationMethod extends CommonMethodAttributes {
/**
* The verification method type.
*/
private final VerificationMethodType type;
/**
* Creates a new verification method.
*
* @param type The type. Must not be {@code null}.
* @param policy The policy, {@code null} if not specified.
* @param procedure The procedure, {@code null} if not specified.
* @param status The status, {@code null} if not specified.
*/
public VerificationMethod(final VerificationMethodType type,
final Policy policy,
final Procedure procedure,
final Status status) {
super(policy, procedure, status);
Objects.requireNonNull(type);
this.type = type;
}
/**
* Returns the type of this verification method.
*
* @return The type.
*/
public VerificationMethodType getType() {
return type;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof VerificationMethod)) return false;
VerificationMethod that = (VerificationMethod) o;
return getType().equals(that.getType())
&& Objects.equals(getPolicy(), that.getPolicy())
&& Objects.equals(getProcedure(), that.getProcedure())
&& Objects.equals(getStatus(), that.getStatus());
}
@Override
public int hashCode() {
return Objects.hash(getType(), getPolicy(), getProcedure(), getStatus());
}
/**
* Returns a JSON object representation of this verification method.
*
* @return The JSON object.
*/
@Override
public JSONObject toJSONObject() {
JSONObject o = super.toJSONObject();
o.put("type", getType().getValue());
return o;
}
/**
* Parses a verification method from the specified JSON object.
*
* @param jsonObject The JSON object. Must not be {@code null}.
*
* @return The verification method.
*
* @throws ParseException If parsing failed.
*/
public static VerificationMethod parse(final JSONObject jsonObject)
throws ParseException {
try {
VerificationMethodType type = new VerificationMethodType(JSONObjectUtils.getString(jsonObject, "type"));
Policy policy = null;
if (jsonObject.get("policy") != null) {
policy = new Policy(JSONObjectUtils.getString(jsonObject, "policy"));
}
Procedure procedure = null;
if (jsonObject.get("procedure") != null) {
procedure = new Procedure(JSONObjectUtils.getString(jsonObject, "procedure"));
}
Status status = null;
if (jsonObject.get("status") != null) {
status = new Status(JSONObjectUtils.getString(jsonObject, "status"));
}
return new VerificationMethod(type, policy, procedure, status);
} catch (IllegalArgumentException e) {
throw new ParseException(e.getMessage(), e);
}
}
}