nl.reinkrul.nuts.vcr.VPVerificationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client library for using the Nuts Node's REST API.
/*
* 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;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* VPVerificationRequest
*/
@JsonPropertyOrder({
VPVerificationRequest.JSON_PROPERTY_VERIFIABLE_PRESENTATION,
VPVerificationRequest.JSON_PROPERTY_VALID_AT,
VPVerificationRequest.JSON_PROPERTY_VERIFY_CREDENTIALS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-05-12T15:13:43.723871+02:00[Europe/Amsterdam]")
public class VPVerificationRequest {
public static final String JSON_PROPERTY_VERIFIABLE_PRESENTATION = "verifiablePresentation";
private nl.reinkrul.nuts.common.VerifiablePresentation verifiablePresentation;
public static final String JSON_PROPERTY_VALID_AT = "validAt";
private String validAt;
public static final String JSON_PROPERTY_VERIFY_CREDENTIALS = "verifyCredentials";
private Boolean verifyCredentials = true;
public VPVerificationRequest() {
}
public VPVerificationRequest verifiablePresentation(nl.reinkrul.nuts.common.VerifiablePresentation verifiablePresentation) {
this.verifiablePresentation = verifiablePresentation;
return this;
}
/**
* Get verifiablePresentation
* @return verifiablePresentation
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_VERIFIABLE_PRESENTATION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public nl.reinkrul.nuts.common.VerifiablePresentation getVerifiablePresentation() {
return verifiablePresentation;
}
@JsonProperty(JSON_PROPERTY_VERIFIABLE_PRESENTATION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setVerifiablePresentation(nl.reinkrul.nuts.common.VerifiablePresentation verifiablePresentation) {
this.verifiablePresentation = verifiablePresentation;
}
public VPVerificationRequest validAt(String validAt) {
this.validAt = validAt;
return this;
}
/**
* Date and time at which the VP should be valid. If not supplied, the current date/time is used.
* @return validAt
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALID_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getValidAt() {
return validAt;
}
@JsonProperty(JSON_PROPERTY_VALID_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setValidAt(String validAt) {
this.validAt = validAt;
}
public VPVerificationRequest verifyCredentials(Boolean verifyCredentials) {
this.verifyCredentials = verifyCredentials;
return this;
}
/**
* Indicates whether the Verifiable Credentials within the VP must be verified, default true.
* @return verifyCredentials
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERIFY_CREDENTIALS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getVerifyCredentials() {
return verifyCredentials;
}
@JsonProperty(JSON_PROPERTY_VERIFY_CREDENTIALS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setVerifyCredentials(Boolean verifyCredentials) {
this.verifyCredentials = verifyCredentials;
}
/**
* Return true if this VPVerificationRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VPVerificationRequest vpVerificationRequest = (VPVerificationRequest) o;
return Objects.equals(this.verifiablePresentation, vpVerificationRequest.verifiablePresentation) &&
Objects.equals(this.validAt, vpVerificationRequest.validAt) &&
Objects.equals(this.verifyCredentials, vpVerificationRequest.verifyCredentials);
}
@Override
public int hashCode() {
return Objects.hash(verifiablePresentation, validAt, verifyCredentials);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VPVerificationRequest {\n");
sb.append(" verifiablePresentation: ").append(toIndentedString(verifiablePresentation)).append("\n");
sb.append(" validAt: ").append(toIndentedString(validAt)).append("\n");
sb.append(" verifyCredentials: ").append(toIndentedString(verifyCredentials)).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 ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `verifiablePresentation` to the URL query string
if (getVerifiablePresentation() != null) {
joiner.add(getVerifiablePresentation().toUrlQueryString(prefix + "verifiablePresentation" + suffix));
}
// add `validAt` to the URL query string
if (getValidAt() != null) {
joiner.add(String.format("%svalidAt%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getValidAt()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `verifyCredentials` to the URL query string
if (getVerifyCredentials() != null) {
joiner.add(String.format("%sverifyCredentials%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getVerifyCredentials()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy