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

com.yahoo.athenz.zts.TenantDomains 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 java.util.List;
import com.yahoo.rdl.*;

//
// TenantDomains -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class TenantDomains {
    public List tenantDomainNames;

    public TenantDomains setTenantDomainNames(List tenantDomainNames) {
        this.tenantDomainNames = tenantDomainNames;
        return this;
    }
    public List getTenantDomainNames() {
        return tenantDomainNames;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy