/** * */ package org.gcube.portlets.user.workspace.shared; import java.io.Serializable; import java.util.List; import org.gcube.portlets.user.workspace.client.model.FileTrashedModel; /** * @author Francesco Mangiacrapa francesco.mangiacrapa{@literal @}isti.cnr.it * Feb 17, 2014 * */ public class TrashContent implements Serializable{ private static final long serialVersionUID = -7428752149892396573L; List trashContent; List listErrors; public TrashContent() { } public TrashContent(List trashContent, List listErrors) { this.trashContent = trashContent; this.listErrors = listErrors; } public List getTrashContent() { return trashContent; } public void setTrashContent(List trashContent) { this.trashContent = trashContent; } public List getListErrors() { return listErrors; } public void setListErrors(List listErrors) { this.listErrors = listErrors; } @Override public String toString() { return "TrashContent [trashContent=" + trashContent + ", listErrors=" + listErrors + "]"; } }