{
public ValidatorWrapper create(Annotation annot, Method method)
{
ValidateMaxLength annotation = (ValidateMaxLength) annot;
MaxLengthValidator validator = new MaxLengthValidator();
validator.setLength(annotation.maxLength());
List<Object> parameters = new ArrayList<Object>();
parameters.add(annotation.maxLength());
return create(validator, annotation.key(), annotation.order(), parameters, method);