public class ValidateResult
extends java.lang.Object
The verified result of the WMS request parameter.
ParameterValidator
Modifier and Type | Field and Description |
---|---|
java.lang.String |
parameterName
The name of the parameter that causes the verification failure.
|
ValidateState |
resultState
The verified result status of the WMS request parameter.
|
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.
|
public ValidateState resultState
The verified result status of the WMS request parameter.
The default is ValidateState.SUCCESS
.
public java.lang.String parameterName
The name of the parameter that causes the verification failure.
public ValidateResult(ValidateState state, java.lang.String name)
state
- WMS the state of the request parameter validation.name
- the name of the parameter that causes the verification failure.public ValidateResult()