Class StringBytesLengthValidator
- java.lang.Object
-
- org.jboss.as.controller.operations.validation.ModelTypeValidator
-
- org.jboss.as.controller.operations.validation.StringBytesLengthValidator
-
- All Implemented Interfaces:
MinMaxValidator,ParameterValidator
public class StringBytesLengthValidator extends ModelTypeValidator implements MinMaxValidator
Validates that the given parameter is a string of an allowed length in bytes.- Author:
- Stefano Maestri (c) 2011 Red Hat Inc.
-
-
Field Summary
Fields Modifier and Type Field Description protected intmaxprotected intmin-
Fields inherited from class org.jboss.as.controller.operations.validation.ModelTypeValidator
BIGDECIMAL_MAX, BIGDECIMAL_MIN, BIGINTEGER_MAX, BIGINTEGER_MIN, nullable, strictType, validTypes
-
-
Constructor Summary
Constructors Constructor Description StringBytesLengthValidator(int min)StringBytesLengthValidator(int min, boolean nullable)StringBytesLengthValidator(int min, boolean nullable, boolean allowExpressions)StringBytesLengthValidator(int min, int max, boolean nullable, boolean allowExpressions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetMax()Gets the maximum, if there is one.LonggetMin()Gets the minimum, if there is one.voidvalidateParameter(String parameterName, org.jboss.dmr.ModelNode value)Validate the parameter with the given name.
-
-
-
Constructor Detail
-
StringBytesLengthValidator
public StringBytesLengthValidator(int min)
-
StringBytesLengthValidator
public StringBytesLengthValidator(int min, boolean nullable)
-
StringBytesLengthValidator
public StringBytesLengthValidator(int min, int max, boolean nullable, boolean allowExpressions)
-
StringBytesLengthValidator
public StringBytesLengthValidator(int min, boolean nullable, boolean allowExpressions)
-
-
Method Detail
-
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
public Long 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
public Long 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
-
-