com.yahoo.athenz.zms.Policy 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 com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
import java.util.Map;
import com.yahoo.rdl.*;
//
// Policy - The representation for a Policy with set of assertions.
//
@JsonIgnoreProperties(ignoreUnknown = true)
public class Policy {
public String name;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Timestamp modified;
public List assertions;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Boolean caseSensitive;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public String version;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Boolean active;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public String description;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Map tags;
@RdlOptional
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public ResourcePolicyOwnership resourceOwnership;
public Policy setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
public Policy setModified(Timestamp modified) {
this.modified = modified;
return this;
}
public Timestamp getModified() {
return modified;
}
public Policy setAssertions(List assertions) {
this.assertions = assertions;
return this;
}
public List getAssertions() {
return assertions;
}
public Policy setCaseSensitive(Boolean caseSensitive) {
this.caseSensitive = caseSensitive;
return this;
}
public Boolean getCaseSensitive() {
return caseSensitive;
}
public Policy setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return version;
}
public Policy setActive(Boolean active) {
this.active = active;
return this;
}
public Boolean getActive() {
return active;
}
public Policy setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return description;
}
public Policy setTags(Map tags) {
this.tags = tags;
return this;
}
public Map getTags() {
return tags;
}
public Policy setResourceOwnership(ResourcePolicyOwnership resourceOwnership) {
this.resourceOwnership = resourceOwnership;
return this;
}
public ResourcePolicyOwnership getResourceOwnership() {
return resourceOwnership;
}
@Override
public boolean equals(Object another) {
if (this != another) {
if (another == null || another.getClass() != Policy.class) {
return false;
}
Policy a = (Policy) another;
if (name == null ? a.name != null : !name.equals(a.name)) {
return false;
}
if (modified == null ? a.modified != null : !modified.equals(a.modified)) {
return false;
}
if (assertions == null ? a.assertions != null : !assertions.equals(a.assertions)) {
return false;
}
if (caseSensitive == null ? a.caseSensitive != null : !caseSensitive.equals(a.caseSensitive)) {
return false;
}
if (version == null ? a.version != null : !version.equals(a.version)) {
return false;
}
if (active == null ? a.active != null : !active.equals(a.active)) {
return false;
}
if (description == null ? a.description != null : !description.equals(a.description)) {
return false;
}
if (tags == null ? a.tags != null : !tags.equals(a.tags)) {
return false;
}
if (resourceOwnership == null ? a.resourceOwnership != null : !resourceOwnership.equals(a.resourceOwnership)) {
return false;
}
}
return true;
}
}