Package com.mycompany.parsley

Source Code of com.mycompany.parsley.ParsleyUrlValidator

package com.mycompany.parsley;

import org.apache.wicket.validation.validator.UrlValidator;

/**
*
*/
public class ParsleyUrlValidator extends ParsleyValidationBehavior<String>
{
  public ParsleyUrlValidator()
  {
    super(new UrlValidator());

    require(true);
    type("urlstrict");
  }
}
TOP

Related Classes of com.mycompany.parsley.ParsleyUrlValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.