com.supermap.services.wms.request
Interface FeatureParameterParser
-
- All Known Implementing Classes:
- FeatureParameterParser111, FeatureParameterParser130, InvalidVersionParser
public interface FeatureParameterParserThe interface to parse the WMS GetFeatureInfo operation parameter.
Convert the keyword-value pair(that is "Parameter name=Parameter value" of the GetFeatureInfo request to the
WMSQueryParameterobject.
-
-
Method Summary
Methods Modifier and Type Method and Description WMSQueryParameterparse(java.util.Map<java.lang.String,java.lang.String> paramMap)Parse the parameter in keyword-value format of the GetFeatureInfo request.
-
-
-
Method Detail
-
parse
WMSQueryParameter parse(java.util.Map<java.lang.String,java.lang.String> paramMap) throws OGCParameterException
Parse the parameter in keyword-value format of the GetFeatureInfo request.
- Parameters:
paramMap- the parameter is a java.util.Map object, the key is the parameter name of the GetFeatureInfo request, the value is the parameter value.- Returns:
- WMS query parameter.
- Throws:
OGCParameterException- parameter exception of OGC service.
-
-