[hibernate-issues] [Hibernate-JIRA] Commented: (HV-229) @Url needs to be added

Hardy Ferentschik (JIRA) noreply at atlassian.com
Mon Feb 1 10:39:30 EST 2010


    [ http://opensource.atlassian.com/projects/hibernate/browse/HV-229?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=35411#action_35411 ] 

Hardy Ferentschik commented on HV-229:
--------------------------------------

Why not just rely on the URL constructor for the ConstraintValidator implementation:

{code}
	public boolean isValid(String value, ConstraintValidatorContext constraintValidatorContext) {
		if ( value == null ) {
			return true;
		}
		try {
			new java.net.URL( value );
			return true;
		}
		catch ( MalformedURLException e ) {
			return false;
		}
	}
{code}

> @Url needs to be added
> ----------------------
>
>                 Key: HV-229
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HV-229
>             Project: Hibernate Validator
>          Issue Type: New Feature
>          Components: validators
>    Affects Versions: 3.1.0.GA
>            Reporter: Ken Egervari
>            Assignee: Hardy Ferentschik
>             Fix For: 4.1.0
>
>   Original Estimate: 2 hours
>  Remaining Estimate: 2 hours
>
> It would be nice to have a @Url constraint. This is a very common use-case. The regular expression itself is tedious to write - there are tons of versions online. There could be options to allow for mailto: and others, to make it stronger or looser as needed by the application. However, a basic one would be a great addition to the library as lots and lots of users will need this to be sure.
> Thanks!

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list