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

com.yahoo.athenz.zms.SignedDomain Maven / Gradle / Ivy

The newest version!
//
// This file generated by rdl 1.5.2. Do not modify!
//

package com.yahoo.athenz.zms;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.yahoo.rdl.*;

//
// SignedDomain - A domain object signed with server's private key. The
// signature and keyid are optional if the metaonly flag is set to true in the
// getSignedDomains api call
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class SignedDomain {
    public DomainData domain;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String signature;
    @RdlOptional
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
    public String keyId;

    public SignedDomain setDomain(DomainData domain) {
        this.domain = domain;
        return this;
    }
    public DomainData getDomain() {
        return domain;
    }
    public SignedDomain setSignature(String signature) {
        this.signature = signature;
        return this;
    }
    public String getSignature() {
        return signature;
    }
    public SignedDomain setKeyId(String keyId) {
        this.keyId = keyId;
        return this;
    }
    public String getKeyId() {
        return keyId;
    }

    @Override
    public boolean equals(Object another) {
        if (this != another) {
            if (another == null || another.getClass() != SignedDomain.class) {
                return false;
            }
            SignedDomain a = (SignedDomain) another;
            if (domain == null ? a.domain != null : !domain.equals(a.domain)) {
                return false;
            }
            if (signature == null ? a.signature != null : !signature.equals(a.signature)) {
                return false;
            }
            if (keyId == null ? a.keyId != null : !keyId.equals(a.keyId)) {
                return false;
            }
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy