com.yahoo.athenz.zms.Policies Maven / Gradle / Ivy
//
// 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.*;
//
// Policies - The representation of list of policy objects
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class Policies {
public List list;
public Policies setList(List list) {
this.list = list;
return this;
}
public List getList() {
return list;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != Policies.class) {
return false;
}
Policies a = (Policies) another;
if (list == null ? a.list != null : !list.equals(a.list)) {
return false;
}
}
return true;
}
}