All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.athenz.zts.Identity 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.fasterxml.jackson.annotation.JsonInclude;
import java.util.Map;
import com.yahoo.rdl.*;

//
// Identity - Identity - a signed assertion of service or human identity, the
// response could be either a client certificate or just a regular NToken
// (depending if the request contained a csr or not).
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class Identity {
    public String name;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String certificate;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String caCertBundle;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String sshCertificate;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String sshCertificateSigner;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String serviceToken;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public Map attributes;

    public Identity setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return name;
    }
    public Identity setCertificate(String certificate) {
        this.certificate = certificate;
        return this;
    }
    public String getCertificate() {
        return certificate;
    }
    public Identity setCaCertBundle(String caCertBundle) {
        this.caCertBundle = caCertBundle;
        return this;
    }
    public String getCaCertBundle() {
        return caCertBundle;
    }
    public Identity setSshCertificate(String sshCertificate) {
        this.sshCertificate = sshCertificate;
        return this;
    }
    public String getSshCertificate() {
        return sshCertificate;
    }
    public Identity setSshCertificateSigner(String sshCertificateSigner) {
        this.sshCertificateSigner = sshCertificateSigner;
        return this;
    }
    public String getSshCertificateSigner() {
        return sshCertificateSigner;
    }
    public Identity setServiceToken(String serviceToken) {
        this.serviceToken = serviceToken;
        return this;
    }
    public String getServiceToken() {
        return serviceToken;
    }
    public Identity setAttributes(Map attributes) {
        this.attributes = attributes;
        return this;
    }
    public Map getAttributes() {
        return attributes;
    }

    @Override
    public boolean equals(Object another) {
        if (this != another) {
            if (another == null || another.getClass() != Identity.class) {
                return false;
            }
            Identity a = (Identity) another;
            if (name == null ? a.name != null : !name.equals(a.name)) {
                return false;
            }
            if (certificate == null ? a.certificate != null : !certificate.equals(a.certificate)) {
                return false;
            }
            if (caCertBundle == null ? a.caCertBundle != null : !caCertBundle.equals(a.caCertBundle)) {
                return false;
            }
            if (sshCertificate == null ? a.sshCertificate != null : !sshCertificate.equals(a.sshCertificate)) {
                return false;
            }
            if (sshCertificateSigner == null ? a.sshCertificateSigner != null : !sshCertificateSigner.equals(a.sshCertificateSigner)) {
                return false;
            }
            if (serviceToken == null ? a.serviceToken != null : !serviceToken.equals(a.serviceToken)) {
                return false;
            }
            if (attributes == null ? a.attributes != null : !attributes.equals(a.attributes)) {
                return false;
            }
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy