Updated ProjectView

This commit is contained in:
Francesco Mangiacrapa 2022-10-11 09:15:15 +02:00
parent d15fdacb08
commit 06ef7cb118
1 changed files with 6 additions and 1 deletions

View File

@ -1,12 +1,17 @@
package org.gcube.application.geoportalcommon.shared.geoportal.view;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.gcube.application.geoportalcommon.shared.geoportal.project.ProjectDV;
public class ProjectView {
public class ProjectView implements Serializable {
/**
*
*/
private static final long serialVersionUID = 6890481787301347388L;
private ProjectDV theProjectDV;
//The DocumentDV (contained in the ProjectDV) is listed in SectionView
private List<SectionView> listSections = new ArrayList<SectionView>();