com.yahoo.athenz.zts.CertificateAuthorityBundle Maven / Gradle / Ivy
The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//
package com.yahoo.athenz.zts;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.yahoo.rdl.*;
//
// CertificateAuthorityBundle -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class CertificateAuthorityBundle {
public String name;
public String certs;
public CertificateAuthorityBundle setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
public CertificateAuthorityBundle setCerts(String certs) {
this.certs = certs;
return this;
}
public String getCerts() {
return certs;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != CertificateAuthorityBundle.class) {
return false;
}
CertificateAuthorityBundle a = (CertificateAuthorityBundle) another;
if (name == null ? a.name != null : !name.equals(a.name)) {
return false;
}
if (certs == null ? a.certs != null : !certs.equals(a.certs)) {
return false;
}
}
return true;
}
}