Class BytesValidator
java.lang.Object
org.jboss.as.controller.operations.validation.ModelTypeValidator
org.jboss.as.controller.operations.validation.BytesValidator
- All Implemented Interfaces:
MinMaxValidator,ParameterValidator
Validates that a parameter is a byte[] of an acceptable length.
- Author:
- Brian Stansberry (c) 2011 Red Hat Inc.
-
Field Summary
Fields inherited from class org.jboss.as.controller.operations.validation.ModelTypeValidator
BIGDECIMAL_MAX, BIGDECIMAL_MIN, BIGINTEGER_MAX, BIGINTEGER_MIN, nullable, strictType, validTypes -
Constructor Summary
ConstructorsConstructorDescriptionBytesValidator(int min, int max, boolean nullable) Creates a BytesValidator that allows potentially more than one type.BytesValidator(int min, int max, org.jboss.dmr.ModelType... otherValidTypes) Creates a BytesValidator -
Method Summary
Modifier and TypeMethodDescriptionstatic BytesValidatorcreateSha1(boolean nullable) getMax()Gets the maximum, if there is one.getMin()Gets the minimum, if there is one.voidvalidateParameter(String parameterName, org.jboss.dmr.ModelNode value) Validate the parameter with the given name.
-
Constructor Details
-
BytesValidator
public BytesValidator(int min, int max, boolean nullable) Creates a BytesValidator that allows potentially more than one type.- Parameters:
min- the minimum length of the byte[]max- the maximum length of the byte[]nullable- whether an undefined value is allowed
-
BytesValidator
public BytesValidator(int min, int max, org.jboss.dmr.ModelType... otherValidTypes) Creates a BytesValidator- Parameters:
min- the minimum length of the byte[]max- the maximum length of the byte[]otherValidTypes- additional valid types (i.e one of those whose value can convert to a byte[].) May benull
-
-
Method Details
-
createSha1
-
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
-
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
-