com.supermap.services.wps
Interface WPSRequestChecker
-
- All Known Implementing Classes:
- WPSRequestChecker100
public interface WPSRequestCheckerWPS request parameters verifier.
Verify the parameters of the WPS request, the parameters to be verified are the keyword value pairs (keyword-value pair, i.e., the parameter name = parameter value) form.
-
-
Method Summary
Methods Modifier and Type Method and Description booleancheckRequest(java.util.Map<java.lang.String,java.lang.String> paramMap, java.util.Map<java.lang.String,java.lang.String> checkedInfo)Verify the parameter in keyword-value format of the WPS request.java.lang.StringgetVersion()Get the version of the WPS request parameter verifier.
-
-
-
Method Detail
-
checkRequest
boolean checkRequest(java.util.Map<java.lang.String,java.lang.String> paramMap, java.util.Map<java.lang.String,java.lang.String> checkedInfo)Verify the parameter in keyword-value format of the WPS request.
The verified target parameter mapping, the key is the name of the parameter name in the WPS request, the value is the parameter value. The verified result information, when therer is parameter error, the checkedInfo parameter will be stored in a detailed description of the error parameters. The key is the field name, the value is the content.- Returns:
- whether the parameter is verified to be right, if yes it returns true, otherwise, false.
-
getVersion
java.lang.String getVersion()
Get the version of the WPS request parameter verifier.
The version of the WPS service supported by the request verifier.
- Returns:
- version number.
-
-