play.data.validation
Class Constraints.MaxLengthValidator

java.lang.Object
  extended by play.data.validation.Constraints.Validator<java.lang.String>
      extended by play.data.validation.Constraints.MaxLengthValidator
All Implemented Interfaces:
javax.validation.ConstraintValidator<Constraints.MaxLength,java.lang.String>
Enclosing class:
Constraints

public static class Constraints.MaxLengthValidator
extends Constraints.Validator<java.lang.String>
implements javax.validation.ConstraintValidator<Constraints.MaxLength,java.lang.String>

Validator for @MaxLength fields.


Field Summary
static java.lang.String message
           
 
Constructor Summary
Constraints.MaxLengthValidator()
           
Constraints.MaxLengthValidator(long value)
           
 
Method Summary
 void initialize(Constraints.MaxLength constraintAnnotation)
           
 boolean isValid(java.lang.String object)
          Returns true if this value is valid.
 
Methods inherited from class play.data.validation.Constraints.Validator
isValid
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.validation.ConstraintValidator
isValid
 

Field Detail

message

public static final java.lang.String message
See Also:
Constant Field Values
Constructor Detail

Constraints.MaxLengthValidator

public Constraints.MaxLengthValidator()

Constraints.MaxLengthValidator

public Constraints.MaxLengthValidator(long value)
Method Detail

initialize

public void initialize(Constraints.MaxLength constraintAnnotation)
Specified by:
initialize in interface javax.validation.ConstraintValidator<Constraints.MaxLength,java.lang.String>

isValid

public boolean isValid(java.lang.String object)
Description copied from class: Constraints.Validator
Returns true if this value is valid.

Specified by:
isValid in class Constraints.Validator<java.lang.String>