package org.gcube.portlets.user.geoportaldataentry.shared; import java.io.Serializable; import java.util.List; import org.gcube.portlets.user.geoportaldataentry.client.ProjectFormCard; import org.gcube.portlets.widgets.mpformbuilder.shared.GenericDatasetBean; public class GeoNaFormDataObject implements Serializable{ /** * */ private static final long serialVersionUID = 3620244260086172039L; private List listGDB; private ProjectFormCard theType; public GeoNaFormDataObject(){ } public GeoNaFormDataObject(List listGDB, ProjectFormCard theType) { super(); this.listGDB = listGDB; this.theType = theType; } public List getListGDB() { return listGDB; } public void setListGDB(List listGDB) { this.listGDB = listGDB; } public ProjectFormCard getTheType() { return theType; } public void setTheType(ProjectFormCard theType) { this.theType = theType; } @Override public String toString() { return "GeoNaFormDataObject [listGDB=" + listGDB + ", theType=" + theType + "]"; } }