gcube-cms-suite/geoportal-common/src/main/java/org/gcube/application/geoportal/common/model/document/filesets/sdi/GeoServerPlatform.java

30 lines
980 B
Java

package org.gcube.application.geoportal.common.model.document.filesets.sdi;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.List;
public class GeoServerPlatform extends PlatformInfo{
public static final String GS_PLATFORM="Geoserver";
public static final String WORKSPACE= "workspace";
public static final String LAYER_NAME= " layerName";
public static final String PERSISTENCE_PATH = "persistencePath";
public static final String FILES="files";
public static final String STORENAME="storeName";
@JsonIgnore
public String getWorkspace(){return this.getString(WORKSPACE);}
@JsonIgnore
public String getLayerName(){return this.getString(LAYER_NAME);}
@JsonIgnore
public String getPersistencePath(){return this.getString(PERSISTENCE_PATH);}
@JsonIgnore
public List getFiles(){return this.get(FILES,List.class);}
@JsonIgnore
public String getStoreName(){return this.getString(STORENAME);}
}