nl.renarj.jasdb.rest.model.RestGrantObject Maven / Gradle / Ivy
package nl.renarj.jasdb.rest.model;
import java.util.List;
/**
* @author Renze de Vries
*/
public class RestGrantObject implements RestEntity {
private List grants;
private String objectName;
public RestGrantObject(String objectName, List grants) {
this.grants = grants;
this.objectName = objectName;
}
public RestGrantObject() {
}
public List getGrants() {
return grants;
}
public void setGrants(List grants) {
this.grants = grants;
}
public String getObjectName() {
return objectName;
}
public void setObjectName(String objectName) {
this.objectName = objectName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy