dev.bf2.ffm.ams.client.models.Certificate Maven / Gradle / Ivy
/*
* Account Management Service API
* Manage user subscriptions and clusters
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.bf2.ffm.ams.client.models;
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 dev.bf2.ffm.ams.client.models.CertificateSerial;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Certificate
*/
@JsonPropertyOrder({
Certificate.JSON_PROPERTY_CERT,
Certificate.JSON_PROPERTY_ID,
Certificate.JSON_PROPERTY_KEY,
Certificate.JSON_PROPERTY_METADATA,
Certificate.JSON_PROPERTY_ORGANIZATION_ID,
Certificate.JSON_PROPERTY_SERIAL
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Certificate {
public static final String JSON_PROPERTY_CERT = "cert";
private String cert;
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_KEY = "key";
private String key;
public static final String JSON_PROPERTY_METADATA = "metadata";
private Map metadata = new HashMap<>();
public static final String JSON_PROPERTY_ORGANIZATION_ID = "organization_id";
private String organizationId;
public static final String JSON_PROPERTY_SERIAL = "serial";
private CertificateSerial serial;
public Certificate() {
}
public Certificate cert(String cert) {
this.cert = cert;
return this;
}
/**
* Get cert
* @return cert
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_CERT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getCert() {
return cert;
}
@JsonProperty(JSON_PROPERTY_CERT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCert(String cert) {
this.cert = cert;
}
public Certificate id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public Certificate key(String key) {
this.key = key;
return this;
}
/**
* Get key
* @return key
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getKey() {
return key;
}
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setKey(String key) {
this.key = key;
}
public Certificate metadata(Map metadata) {
this.metadata = metadata;
return this;
}
public Certificate putMetadataItem(String key, String metadataItem) {
this.metadata.put(key, metadataItem);
return this;
}
/**
* Get metadata
* @return metadata
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Map getMetadata() {
return metadata;
}
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
public Certificate organizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
/**
* Get organizationId
* @return organizationId
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_ORGANIZATION_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getOrganizationId() {
return organizationId;
}
@JsonProperty(JSON_PROPERTY_ORGANIZATION_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
public Certificate serial(CertificateSerial serial) {
this.serial = serial;
return this;
}
/**
* Get serial
* @return serial
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_SERIAL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CertificateSerial getSerial() {
return serial;
}
@JsonProperty(JSON_PROPERTY_SERIAL)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSerial(CertificateSerial serial) {
this.serial = serial;
}
/**
* Return true if this Certificate object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Certificate certificate = (Certificate) o;
return Objects.equals(this.cert, certificate.cert) &&
Objects.equals(this.id, certificate.id) &&
Objects.equals(this.key, certificate.key) &&
Objects.equals(this.metadata, certificate.metadata) &&
Objects.equals(this.organizationId, certificate.organizationId) &&
Objects.equals(this.serial, certificate.serial);
}
@Override
public int hashCode() {
return Objects.hash(cert, id, key, metadata, organizationId, serial);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Certificate {\n");
sb.append(" cert: ").append(toIndentedString(cert)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" key: ").append(toIndentedString(key)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" organizationId: ").append(toIndentedString(organizationId)).append("\n");
sb.append(" serial: ").append(toIndentedString(serial)).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 ");
}
}