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