All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.renarj.jasdb.rest.model.RestGrantObject Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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