public class ValidateIntegerFactory extends BaseFactory
{
public ValidatorWrapper create(Annotation annot, Method method)
{
ValidateInteger annotation = (ValidateInteger) annot;
IntegerValidator validator = new IntegerValidator();
return create(validator, annotation.key(), annotation.order(), null, method);
}