nl.reinkrul.nuts.vcr.v2.VPVerificationResult Maven / Gradle / Ivy
/*
* Nuts Verifiable Credential API spec
* API specification for common operations on Verifiable credentials. It allows the three roles, issuer, holder and verifier to issue, revoke, search, present and verify credentials.
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package nl.reinkrul.nuts.vcr.v2;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import nl.reinkrul.nuts.vcr.v2.VerifiableCredential;
/**
* Contains the verifiable presentation verification result.
*/
@ApiModel(description = "Contains the verifiable presentation verification result.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:34.811142+02:00[Europe/Amsterdam]")
public class VPVerificationResult {
public static final String SERIALIZED_NAME_VALIDITY = "validity";
@SerializedName(SERIALIZED_NAME_VALIDITY)
private Boolean validity;
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
private String message;
public static final String SERIALIZED_NAME_CREDENTIALS = "credentials";
@SerializedName(SERIALIZED_NAME_CREDENTIALS)
private List credentials = null;
public VPVerificationResult validity(Boolean validity) {
this.validity = validity;
return this;
}
/**
* Indicates the validity of the signature, issuer and revocation state.
* @return validity
**/
@ApiModelProperty(required = true, value = "Indicates the validity of the signature, issuer and revocation state.")
public Boolean getValidity() {
return validity;
}
public void setValidity(Boolean validity) {
this.validity = validity;
}
public VPVerificationResult message(String message) {
this.message = message;
return this;
}
/**
* Indicates what went wrong
* @return message
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Indicates what went wrong")
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public VPVerificationResult credentials(List credentials) {
this.credentials = credentials;
return this;
}
public VPVerificationResult addCredentialsItem(VerifiableCredential credentialsItem) {
if (this.credentials == null) {
this.credentials = new ArrayList();
}
this.credentials.add(credentialsItem);
return this;
}
/**
* If the VP is valid, it will contain the credentials inside the VP.
* @return credentials
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "If the VP is valid, it will contain the credentials inside the VP.")
public List getCredentials() {
return credentials;
}
public void setCredentials(List credentials) {
this.credentials = credentials;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VPVerificationResult vpVerificationResult = (VPVerificationResult) o;
return Objects.equals(this.validity, vpVerificationResult.validity) &&
Objects.equals(this.message, vpVerificationResult.message) &&
Objects.equals(this.credentials, vpVerificationResult.credentials);
}
@Override
public int hashCode() {
return Objects.hash(validity, message, credentials);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VPVerificationResult {\n");
sb.append(" validity: ").append(toIndentedString(validity)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" credentials: ").append(toIndentedString(credentials)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy