package eu.eudat.data.dao.criteria; import eu.eudat.data.entities.DMP; import eu.eudat.types.grant.GrantStateType; import java.util.List; import java.util.UUID; public class DataManagementPlanPublicCriteria extends Criteria { private GrantStateType grantStatus; private List grants; public List datasetProfile; private List dmpOrganisations; private Integer role; private boolean allVersions; private List groupIds; public GrantStateType getGrantStatus() { return grantStatus; } public void setGrantStatus(GrantStateType grantStatus) { this.grantStatus = grantStatus; } public List getGrants() { return grants; } public void setGrants(List grants) { this.grants = grants; } public List getDatasetProfile() { return datasetProfile; } public void setDatasetProfile(List datasetProfile) { this.datasetProfile = datasetProfile; } public List getDmpOrganisations() { return dmpOrganisations; } public void setDmpOrganisations(List dmpOrganisations) { this.dmpOrganisations = dmpOrganisations; } public Integer getRole() { return role; } public void setRole(Integer role) { this.role = role; } public boolean getAllVersions() { return allVersions; } public void setAllVersions(boolean allVersions) { this.allVersions = allVersions; } public List getGroupIds() { return groupIds; } public void setGroupIds(List groupIds) { this.groupIds = groupIds; } }