com.supermap.services.wms.request
Interface Validator
-
- All Known Implementing Classes:
- FeatureParameterValidator111, FeatureParameterValidator130, MapParameterValidator111, MapParameterValidator130
public interface ValidatorWMS request parameters verifier.
Verify the parameters of the WMS 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 voidvalidate(java.util.Map<java.lang.String,java.lang.String> paramMap)Verify the parameter in keyword-value format of the WMS request.
-
-
-
Method Detail
-
validate
void validate(java.util.Map<java.lang.String,java.lang.String> paramMap) throws OGCParameterExceptionVerify the parameter in keyword-value format of the WMS request.
- Parameters:
paramMap- the parameter is a java.util.Map object, the key is the parameter name of the WMS request, the value is the parameter value.- Throws:
OGCParameterException- parameter exception of OGC service.
-
-