nl.reinkrul.nuts.vcr.v2.CredentialIssuer 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.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;
/**
* CredentialIssuer
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-14T14:56:34.811142+02:00[Europe/Amsterdam]")
public class CredentialIssuer {
public static final String SERIALIZED_NAME_ISSUER = "issuer";
@SerializedName(SERIALIZED_NAME_ISSUER)
private String issuer;
public static final String SERIALIZED_NAME_CREDENTIAL_TYPE = "credentialType";
@SerializedName(SERIALIZED_NAME_CREDENTIAL_TYPE)
private String credentialType;
public CredentialIssuer issuer(String issuer) {
this.issuer = issuer;
return this;
}
/**
* the DID of an issuer
* @return issuer
**/
@ApiModelProperty(example = "did:nuts:B8PUHs2AUHbFF1xLLK4eZjgErEcMXHxs68FteY7NDtCY", required = true, value = "the DID of an issuer")
public String getIssuer() {
return issuer;
}
public void setIssuer(String issuer) {
this.issuer = issuer;
}
public CredentialIssuer credentialType(String credentialType) {
this.credentialType = credentialType;
return this;
}
/**
* a credential type
* @return credentialType
**/
@ApiModelProperty(example = "NutsOrganizationCredential", required = true, value = "a credential type")
public String getCredentialType() {
return credentialType;
}
public void setCredentialType(String credentialType) {
this.credentialType = credentialType;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CredentialIssuer credentialIssuer = (CredentialIssuer) o;
return Objects.equals(this.issuer, credentialIssuer.issuer) &&
Objects.equals(this.credentialType, credentialIssuer.credentialType);
}
@Override
public int hashCode() {
return Objects.hash(issuer, credentialType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CredentialIssuer {\n");
sb.append(" issuer: ").append(toIndentedString(issuer)).append("\n");
sb.append(" credentialType: ").append(toIndentedString(credentialType)).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