Class IntRangeValidator
java.lang.Object
org.jboss.as.controller.operations.validation.ModelTypeValidator
org.jboss.as.controller.operations.validation.IntRangeValidator
- All Implemented Interfaces:
MinMaxValidator,ParameterValidator
Validates that the given parameter is an int in a given range.
- Author:
- Brian Stansberry (c) 2011 Red Hat Inc.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final intprotected final intstatic final ParameterValidatorValidates that a parameter is an integer greater than or equal to zero.static final ParameterValidatorValidates that a parameter is an integer greater than zero.Fields inherited from class org.jboss.as.controller.operations.validation.ModelTypeValidator
BIGDECIMAL_MAX, BIGDECIMAL_MIN, BIGINTEGER_MAX, BIGINTEGER_MIN, nullable, strictType, validTypes -
Constructor Summary
ConstructorsConstructorDescriptionIntRangeValidator(int min) IntRangeValidator(int min, boolean nullable) IntRangeValidator(int min, boolean nullable, boolean allowExpressions) IntRangeValidator(int min, int max) IntRangeValidator(int min, int max, boolean nullable, boolean allowExpressions) -
Method Summary
-
Field Details
-
NON_NEGATIVE
Validates that a parameter is an integer greater than or equal to zero. -
POSITIVE
Validates that a parameter is an integer greater than zero. -
min
protected final int min -
max
protected final int max
-
-
Constructor Details
-
IntRangeValidator
public IntRangeValidator(int min) -
IntRangeValidator
public IntRangeValidator(int min, int max) -
IntRangeValidator
public IntRangeValidator(int min, boolean nullable) -
IntRangeValidator
public IntRangeValidator(int min, boolean nullable, boolean allowExpressions) -
IntRangeValidator
public IntRangeValidator(int min, int max, boolean nullable, boolean allowExpressions)
-
-
Method Details
-
validateParameter
public void validateParameter(String parameterName, org.jboss.dmr.ModelNode value) throws OperationFailedException Validate the parameter with the given name.- Specified by:
validateParameterin interfaceParameterValidator- Overrides:
validateParameterin classModelTypeValidator- Parameters:
parameterName- the name of the parameter. Cannot benullvalue- the parameter value. Cannot benull- Throws:
OperationFailedException- if the value is not valid
-
getMin
Description copied from interface:MinMaxValidatorGets the minimum, if there is one.- Specified by:
getMinin interfaceMinMaxValidator- Returns:
- the minimum value, or
nullif there is no minimum
-
getMax
Description copied from interface:MinMaxValidatorGets the maximum, if there is one.- Specified by:
getMaxin interfaceMinMaxValidator- Returns:
- the maximum value, or
nullif there is no minimum
-