model.Policy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
package model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Policy {
private String id;
private String policyType;
private boolean active;
private List groups;
private long createdDate;
private long modifiedDate;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPolicyType() {
return policyType;
}
public void setPolicyType(String policyType) {
this.policyType = policyType;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
public List getGroups() {
return groups;
}
public void setGroups(List groups) {
this.groups = groups;
}
public long getCreatedDate() {
return createdDate;
}
public void setCreatedDate(long createdDate) {
this.createdDate = createdDate;
}
public long getModifiedDate() {
return modifiedDate;
}
public void setModifiedDate(long modifiedDate) {
this.modifiedDate = modifiedDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy