com.supermap.services.wms.request
Class ValidateResult
- java.lang.Object
-
- com.supermap.services.wms.request.ValidateResult
-
public class ValidateResult extends java.lang.ObjectThe verified result of the WMS request parameter.
- See Also:
ParameterValidator
-
-
Field Summary
Fields Modifier and Type Field and Description java.lang.StringparameterNameThe name of the parameter that causes the verification failure.ValidateStateresultStateThe verified result status of the WMS request parameter.
-
Constructor Summary
Constructors Constructor and Description ValidateResult()The default constructor.ValidateResult(ValidateState state, java.lang.String name)According to the state of the request parameter validation of the WMS and the name of the parameter that causes the verification failure.
-
-
-
Field Detail
-
resultState
public ValidateState resultState
The verified result status of the WMS request parameter.
The default is
ValidateState.SUCCESS.
-
parameterName
public java.lang.String parameterName
The name of the parameter that causes the verification failure.
-
-
Constructor Detail
-
ValidateResult
public ValidateResult(ValidateState state, java.lang.String name)
According to the state of the request parameter validation of the WMS and the name of the parameter that causes the verification failure.- Parameters:
state- WMS the state of the request parameter validation.name- the name of the parameter that causes the verification failure.
-
ValidateResult
public ValidateResult()
The default constructor.
-
-