You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bval.apache.org by dw...@apache.org on 2010/11/15 20:15:05 UTC

svn commit: r1035416 - /incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties

Author: dwoods
Date: Mon Nov 15 19:15:04 2010
New Revision: 1035416

URL: http://svn.apache.org/viewvc?rev=1035416&view=rev
Log:
BVAL-86 Missing DecimalMax/DecimalMin constraint messages in ValidationMessages.properties.   Contributed by Albert Lee.

Modified:
    incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties

Modified: incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties
URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties?rev=1035416&r1=1035415&r2=1035416&view=diff
==============================================================================
--- incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties (original)
+++ incubator/bval/trunk/bval-jsr303/src/main/resources/org/apache/bval/jsr303/ValidationMessages.properties Mon Nov 15 19:15:04 2010
@@ -29,6 +29,8 @@ javax.validation.constraints.Digits.mess
 javax.validation.constraints.Past.message=must be a past date
 javax.validation.constraints.Future.message=must be a future date
 javax.validation.constraints.Pattern.message=must match the following regular expression: {regexp}
+javax.validation.constraints.DecimalMax.message=must be less than or equal to {value}
+javax.validation.constraints.DecimalMin.message=must be greater than or equal to {value}
 
 # additional built-ins
 org.apache.bval.constraints.NotEmpty.message=may not be empty