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