geoportal-data-common/src/main/java/org/gcube/application/geoportalcommon/shared/geoportal/IdentificationReferenceDV.java

27 lines
432 B
Java

package org.gcube.application.geoportalcommon.shared.geoportal;
import java.io.Serializable;
public class IdentificationReferenceDV extends DocumentDV implements Serializable {
/**
*
*/
private static final long serialVersionUID = -1940104535678320214L;
String type;
public IdentificationReferenceDV() {
}
public void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
}