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

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

There is a newer version: 1.12.5
Show 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 java.util.List;
import com.yahoo.rdl.*;

//
// DomainGroupMember -
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class DomainGroupMember {
    public String memberName;
    public List memberGroups;

    public DomainGroupMember setMemberName(String memberName) {
        this.memberName = memberName;
        return this;
    }
    public String getMemberName() {
        return memberName;
    }
    public DomainGroupMember setMemberGroups(List memberGroups) {
        this.memberGroups = memberGroups;
        return this;
    }
    public List getMemberGroups() {
        return memberGroups;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy