Package org.geotools.geopkg.wps
Class GeoPackageProcessRequest.Layer
- Object
-
- Layer
-
- Direct Known Subclasses:
GeoPackageProcessRequest.FeaturesLayer
,GeoPackageProcessRequest.TilesLayer
- Enclosing class:
- GeoPackageProcessRequest
public abstract static class GeoPackageProcessRequest.Layer extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Envelope
bbox
protected String
description
protected String
identifier
protected String
name
protected URI
srs
-
Constructor Summary
Constructors Constructor Description Layer()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Envelope
getBbox()
String
getDescription()
String
getIdentifier()
String
getName()
URI
getSrs()
abstract GeoPackageProcessRequest.LayerType
getType()
void
setBbox(Envelope bbox)
void
setDescription(String description)
void
setIdentifier(String identifier)
void
setName(String name)
void
setSrs(URI srs)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getIdentifier
public String getIdentifier()
-
setIdentifier
public void setIdentifier(String identifier)
-
getSrs
public URI getSrs()
-
setSrs
public void setSrs(URI srs)
-
getBbox
public Envelope getBbox()
-
setBbox
public void setBbox(Envelope bbox)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getType
public abstract GeoPackageProcessRequest.LayerType getType()
-
-