com.supermap.services.providers
Class WFSCapabilitiesParser
- java.lang.Object
-
- com.supermap.services.providers.WFSCapabilitiesParser
-
- Direct Known Subclasses:
- CapabilitiesParser10000
public abstract class WFSCapabilitiesParser extends java.lang.ObjectGetCapabilities responds to the results parser.
Parse the response result of the WFS service GetCapabilities operation, and parse the responding XML document as a
WFSCapabilitiesobject.
-
-
Constructor Summary
Constructors Constructor and Description WFSCapabilitiesParser()
-
Method Summary
Methods Modifier and Type Method and Description abstract WFSCapabilitiesparse(org.w3c.dom.Document document)Parses the specified document as aWFSCapabilitiesobject.
-
-
-
Method Detail
-
parse
public abstract WFSCapabilities parse(org.w3c.dom.Document document) throws UnsupportedVersionException, ParseExceptionParses the specified document as a
WFSCapabilitiesobject.- Parameters:
document- The XML document to parse.- Returns:
- WFS Service capability information defined in the service implementation.
- Throws:
UnsupportedVersionException- This exception is thrown when the version declared in the XML document does not parse.ParseException- This exception is thrown when an error occurs in parsing an XML document.
-
-