Interface Wfs
@Path("/")
public interface Wfs
JAX-RS Interface to define a WFS server.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.ws.commons.schema.XmlSchemadescribeFeatureType(net.opengis.wfs.v_2_0_0.DescribeFeatureTypeType describeFeatureRequest) DescribeFeatureType - HTTP POSTorg.apache.ws.commons.schema.XmlSchemaDescribeFeatureType - HTTP GETnet.opengis.wfs.v_2_0_0.WFSCapabilitiesTypegetCapabilities(net.opengis.wfs.v_2_0_0.GetCapabilitiesType getCapabilitesRequest) GetCapabilites - HTTP POSTnet.opengis.wfs.v_2_0_0.WFSCapabilitiesTypegetCapabilities(GetCapabilitiesRequest request) GetCapabilites - HTTP GETgetFeature(net.opengis.wfs.v_2_0_0.GetFeatureType getFeature) GetFeatureorg.apache.ws.commons.schema.XmlSchemagetPropertyValueType(net.opengis.wfs.v_2_0_0.GetPropertyValueType propertyValueTypeRequest) GetPropertyValueType - HTTP POSTnet.opengis.wfs.v_2_0_0.ValueCollectionTypeGetPropertyValueType - HTTP GET
-
Method Details
-
getCapabilities
@GET @Produces({"text/xml","application/xml"}) net.opengis.wfs.v_2_0_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_2_0_0.WFSCapabilitiesType getCapabilities(net.opengis.wfs.v_2_0_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_2_0_0.DescribeFeatureTypeType describeFeatureRequest) throws WfsException DescribeFeatureType - HTTP POST- Throws:
WfsException
-
getFeature
@POST @Consumes({"text/xml","application/xml"}) @Produces({"text/xml","application/xml"}) Wfs20FeatureCollection getFeature(net.opengis.wfs.v_2_0_0.GetFeatureType getFeature) throws WfsException GetFeature- Throws:
WfsException
-
getPropertyValueType
@GET @Produces({"text/xml","application/xml"}) net.opengis.wfs.v_2_0_0.ValueCollectionType getPropertyValueType(@QueryParam("") GetPropertyValueRequest request) throws WfsException GetPropertyValueType - HTTP GET- Throws:
WfsException
-
getPropertyValueType
@POST @Consumes({"text/xml","application/xml"}) @Produces({"text/xml","application/xml"}) org.apache.ws.commons.schema.XmlSchema getPropertyValueType(net.opengis.wfs.v_2_0_0.GetPropertyValueType propertyValueTypeRequest) throws WfsException GetPropertyValueType - HTTP POST- Throws:
WfsException
-