Interface ExtendedWfs
@Path("/")
public interface ExtendedWfs
JAX-RS Interface to define a WFS server. Supports startIndex for GetFeature.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.ws.commons.schema.XmlSchemadescribeFeatureType(net.opengis.wfs.v_1_1_0.DescribeFeatureTypeType describeFeatureRequest) DescribeFeatureType - HTTP POSTorg.apache.ws.commons.schema.XmlSchemaDescribeFeatureType - HTTP GETnet.opengis.wfs.v_1_1_0.WFSCapabilitiesTypegetCapabilities(net.opengis.wfs.v_1_1_0.GetCapabilitiesType getCapabilitesRequest) GetCapabilites - HTTP POSTnet.opengis.wfs.v_1_1_0.WFSCapabilitiesTypegetCapabilities(GetCapabilitiesRequest request) GetCapabilites - HTTP GETorg.codice.ddf.spatial.ogc.wfs.catalog.WfsFeatureCollectiongetFeature(ExtendedGetFeatureType getFeature) GetFeature
-
Method Details
-
getCapabilities
@GET @Produces({"text/xml","application/xml"}) net.opengis.wfs.v_1_1_0.WFSCapabilitiesType getCapabilities(@QueryParam("") GetCapabilitiesRequest request) throws WfsException GetCapabilites - HTTP GET- Throws:
WfsException
-
getCapabilities
@POST @Consumes({"text/xml","application/xml"}) @Produces({"text/xml","application/xml"}) net.opengis.wfs.v_1_1_0.WFSCapabilitiesType getCapabilities(net.opengis.wfs.v_1_1_0.GetCapabilitiesType getCapabilitesRequest) throws WfsException GetCapabilites - HTTP POST- Throws:
WfsException
-
describeFeatureType
@GET @Produces({"text/xml","application/xml"}) org.apache.ws.commons.schema.XmlSchema describeFeatureType(@QueryParam("") DescribeFeatureTypeRequest request) throws WfsException DescribeFeatureType - HTTP GET- Throws:
WfsException
-
describeFeatureType
@POST @Consumes({"text/xml","application/xml"}) @Produces({"text/xml","application/xml"}) org.apache.ws.commons.schema.XmlSchema describeFeatureType(net.opengis.wfs.v_1_1_0.DescribeFeatureTypeType describeFeatureRequest) throws WfsException DescribeFeatureType - HTTP POST- Throws:
WfsException
-
getFeature
@POST @Consumes({"text/xml","application/xml"}) @Produces({"text/xml","application/xml"}) org.codice.ddf.spatial.ogc.wfs.catalog.WfsFeatureCollection getFeature(ExtendedGetFeatureType getFeature) throws WfsException GetFeature- Throws:
WfsException
-