com.supermap.services.wps
Class DefaultWPS
- java.lang.Object
-
- com.supermap.services.wps.DefaultWPS
-
- All Implemented Interfaces:
- WPS, java.io.Serializable
public class DefaultWPS extends java.lang.Object implements WPS, java.io.Serializable
The default WPS interface realization class.
Realize the WPS operation defined by the
WPSinterface. SuperMap iServer realizes the following WPS operation:- GetCapabilities, return description information of the service features and metadata. It's a necessary operation.
- describeProcess, the operation is used to generate a Schema description, which describes the operation information provided by the WPS service. It's a necessary operation.
- execute, the operation performs specific operations. The operation is necessary.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description GenerateCapabilitiesgenerateCapabilitiesGet the service abilities object provided by the WFS service.
-
Constructor Summary
Constructors Constructor and Description DefaultWPS(GenerateCapabilities generateCapabilities)Constructor
-
Method Summary
Methods Modifier and Type Method and Description ProcessDescriptionsdescribeProcess(DescribeProcess describeProcess)Get the service description information provided by the WPS service (describeProcess).ExecuteResponseexecute(Execute execute)Execute WPS Execute (execute).java.lang.StringexecuteNoStore(Execute execute)Execute WPS Execute (execute).WPSCapabilitiesTypegetCapabilities(GetCapabilities getCapabilities)Get the service abilities (Capabilities) provided by the WPS service.ExceptionReportgetExceptionReport(OGCException ogcException)Generate exception information.java.lang.StringgetVersion()The version information of WPS.
-
-
-
Field Detail
-
generateCapabilities
public GenerateCapabilities generateCapabilities
Get the service abilities object provided by the WFS service.
- Since:
- 6.1.3
-
-
Constructor Detail
-
DefaultWPS
public DefaultWPS(GenerateCapabilities generateCapabilities) throws OGCException
Constructor
- Parameters:
generateCapabilities- capability of the WPS service.- Throws:
OGCException
-
-
Method Detail
-
getVersion
public java.lang.String getVersion()
Description copied from interface:WPSThe version information of WPS.- Specified by:
getVersionin interfaceWPS- Returns:
- WPS version.
-
getCapabilities
public WPSCapabilitiesType getCapabilities(GetCapabilities getCapabilities) throws OGCExceptionGet the service abilities (Capabilities) provided by the WPS service.
- Specified by:
getCapabilitiesin interfaceWPS- Returns:
- WPS service ability information.
- Throws:
OGCException- OGC exception information.
-
describeProcess
public ProcessDescriptions describeProcess(DescribeProcess describeProcess) throws OGCExceptionGet the service description information provided by the WPS service (describeProcess).
- Specified by:
describeProcessin interfaceWPS- Returns:
- specify the information list of process.
- Throws:
OGCException- OGC exception information.
-
execute
public ExecuteResponse execute(Execute execute) throws OGCExceptionExecute WPS Execute (execute).
- Specified by:
executein interfaceWPS- Returns:
- Execute object information.
- Throws:
OGCException- OGC exception information.
-
executeNoStore
public java.lang.String executeNoStore(Execute execute) throws OGCExceptionExecute WPS Execute (execute).
- Specified by:
executeNoStorein interfaceWPS- Returns:
- Execute object information.
- Throws:
OGCException- OGC exception information.
-
getExceptionReport
public ExceptionReport getExceptionReport(OGCException ogcException)
Generate exception information.
- Specified by:
getExceptionReportin interfaceWPS- Returns:
-
-