com.supermap.services.wps
Interface WPS
-
- All Known Implementing Classes:
- DefaultWPS
public interface WPSWPS service interface.
WPS(Web Processing Service) is one of the OGC(Open GIS Consortium) standards.
SuperMap iServer currently provides the following WPS operations:
- GetCapabilities, the operation is used to get the capability (Capabilities) of the WPS 1.1.1 service. The operation is necessary.
- DescribeProcess, which is used to get descriptive information for Process. The operation is necessary.
- Execute, which is used to execute the Process request. The operation is necessary.
-
-
Method Summary
Methods Modifier and Type Method and Description ProcessDescriptionsdescribeProcess(DescribeProcess describeProcess)Get the description information of Process.ExecuteResponseexecute(Execute execute)Executejava.lang.StringexecuteNoStore(Execute execute)ExecuteWPSCapabilitiesTypegetCapabilities(GetCapabilities getCapabilities)Get the service abilities (Capabilities) provided by the WPS service.ExceptionReportgetExceptionReport(OGCException ogcException)Exception informationjava.lang.StringgetVersion()The version information of WPS.
-
-
-
Method Detail
-
getCapabilities
WPSCapabilitiesType getCapabilities(GetCapabilities getCapabilities) throws OGCExceptionGet the service abilities (Capabilities) provided by the WPS service.- Returns:
- WPS service ability information.
- Throws:
OGCException- OGC exception information.
-
describeProcess
ProcessDescriptions describeProcess(DescribeProcess describeProcess) throws OGCExceptionGet the description information of Process.- Parameters:
Identifier.-- Returns:
- specify the information list of process.
- Throws:
OGCException- OGC exception information.
-
execute
ExecuteResponse execute(Execute execute) throws OGCExceptionExecute- Parameters:
wpsParameter- request parameters.- Returns:
- Execute object information.
- Throws:
OGCException- OGC exception information.
-
executeNoStore
java.lang.String executeNoStore(Execute execute) throws OGCExceptionExecute- Parameters:
wpsParameter- request parameters.- Returns:
- Execute object information.
- Throws:
OGCException- OGC exception information.
-
getVersion
java.lang.String getVersion()
The version information of WPS.- Returns:
- WPS version.
-
getExceptionReport
ExceptionReport getExceptionReport(OGCException ogcException)
Exception information- Parameters:
ogcException-- Returns:
-
-