com.yahoo.athenz.zms.UserAuthorityAttributes 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 java.util.List;
import com.yahoo.rdl.*;
//
// UserAuthorityAttributes - Copyright The Athenz Authors Licensed under the
// terms of the Apache version 2.0 license. See LICENSE file for terms.
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class UserAuthorityAttributes {
public List values;
public UserAuthorityAttributes setValues(List values) {
this.values = values;
return this;
}
public List getValues() {
return values;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != UserAuthorityAttributes.class) {
return false;
}
UserAuthorityAttributes a = (UserAuthorityAttributes) another;
if (values == null ? a.values != null : !values.equals(a.values)) {
return false;
}
}
return true;
}
}