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

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

//
// RoleAccess -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class RoleAccess {
    public List roles;

    public RoleAccess setRoles(List roles) {
        this.roles = roles;
        return this;
    }
    public List getRoles() {
        return roles;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy