Only added new serialVersionUIDs
This commit is contained in:
parent
6ca16f8907
commit
a5e597c941
|
@ -7,7 +7,10 @@ import org.gcube.application.geoportalcommon.shared.geoportal.materialization.in
|
|||
|
||||
public class GCubeSDIViewerLayerDV implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 7987868754775312895L;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 6620710416056942397L;
|
||||
private String type;
|
||||
private BBOXDV bbox;
|
||||
private HashMap<String, String> ogcLinks;
|
||||
|
|
|
@ -6,11 +6,11 @@ import java.util.List;
|
|||
|
||||
public class FilesetDV implements Serializable {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -2587586022638697113L;
|
||||
|
||||
private static final long serialVersionUID = -3108729581669778828L;
|
||||
private String name;
|
||||
private List<PayloadDV> listPayloads;
|
||||
|
||||
|
|
|
@ -4,10 +4,11 @@ import java.io.Serializable;
|
|||
|
||||
public class PayloadDV implements Serializable {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1364319249658824189L;
|
||||
private static final long serialVersionUID = -1638565659484691126L;
|
||||
|
||||
private String mimetype;
|
||||
|
||||
|
|
|
@ -6,11 +6,11 @@ import org.gcube.application.geoportalcommon.shared.geoportal.DocumentDV;
|
|||
|
||||
public class IdentificationReferenceDV extends DocumentDV implements Serializable {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -1940104535678320214L;
|
||||
|
||||
private static final long serialVersionUID = -4038859146891291745L;
|
||||
private String type;
|
||||
|
||||
public IdentificationReferenceDV() {
|
||||
|
|
|
@ -8,10 +8,11 @@ import org.gcube.application.geoportalcommon.shared.geoportal.DocumentDV;
|
|||
import org.gcube.application.geoportalcommon.shared.geoportal.geojson.GeoJSON;
|
||||
|
||||
public class ProjectDV implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 498764909635626624L;
|
||||
private static final long serialVersionUID = 6296612945369540613L;
|
||||
private String id;
|
||||
private String version;
|
||||
// private PublicationInfo info;
|
||||
|
|
|
@ -11,7 +11,7 @@ public class ProjectView implements Serializable {
|
|||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 6890481787301347388L;
|
||||
private static final long serialVersionUID = -1681876085329564419L;
|
||||
private ProjectDV theProjectDV;
|
||||
// The DocumentDV (contained in the ProjectDV) is listed in SectionView
|
||||
private List<SectionView> listSections = new ArrayList<SectionView>();
|
||||
|
|
|
@ -6,10 +6,12 @@ import java.util.List;
|
|||
|
||||
public class SectionView implements Serializable, CheckEmpty {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -687500472291023073L;
|
||||
private static final long serialVersionUID = -5360469987059239067L;
|
||||
|
||||
private String sectionTitle;
|
||||
|
||||
private List<SubDocumentView> listSubDocuments;
|
||||
|
@ -18,6 +20,7 @@ public class SectionView implements Serializable, CheckEmpty {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEmpty(){
|
||||
if (listSubDocuments == null)
|
||||
return true;
|
||||
|
|
|
@ -11,7 +11,7 @@ public class SubDocumentView implements Serializable, CheckEmpty {
|
|||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -5437906835306090354L;
|
||||
private static final long serialVersionUID = 3563782450418275140L;
|
||||
|
||||
private String metadataAsJSON;
|
||||
|
||||
|
|
Loading…
Reference in New Issue