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

com.yahoo.athenz.zts.RoleCertificate 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.*;

//
// RoleCertificate - Copyright The Athenz Authors Licensed under the terms of
// the Apache version 2.0 license. See LICENSE file for terms. RoleCertificate -
// a role certificate
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class RoleCertificate {
    public String x509Certificate;

    public RoleCertificate setX509Certificate(String x509Certificate) {
        this.x509Certificate = x509Certificate;
        return this;
    }
    public String getX509Certificate() {
        return x509Certificate;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy