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

nl.renarj.jasdb.rest.model.RestGrantObjectCollection 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 RestGrantObjectCollection implements RestEntity {
    private List grantList;

    public RestGrantObjectCollection(List grantList) {
        this.grantList = grantList;
    }

    public RestGrantObjectCollection() {

    }

    public List getGrantList() {
        return grantList;
    }

    public void setGrantList(List grantList) {
        this.grantList = grantList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy