1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
package org.apache.tapestry.valid; |
16 |
|
|
17 |
|
import java.util.Locale; |
18 |
|
import java.util.ResourceBundle; |
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
public final class ValidationStrings |
26 |
|
{ |
27 |
|
public static final String REQUIRED_FIELD = "field-is-required"; |
28 |
|
|
29 |
|
public static final String INVALID_DATE = "invalid-date-format"; |
30 |
|
public static final String INVALID_NUMBER = "invalid-numeric-format"; |
31 |
|
public static final String INVALID_EMAIL = "invalid-email-format"; |
32 |
|
|
33 |
|
public static final String REGEX_MISMATCH = "regex-mismatch"; |
34 |
|
|
35 |
|
public static final String PATTERN_MISMATCH = "pattern-not-matched"; |
36 |
|
|
37 |
|
public static final String VALUE_TOO_SHORT = "field-too-short"; |
38 |
|
public static final String VALUE_TOO_LONG = "field-too-long"; |
39 |
|
|
40 |
|
public static final String VALUE_TOO_SMALL = "number-too-small"; |
41 |
|
public static final String VALUE_TOO_LARGE = "number-too-large"; |
42 |
|
|
43 |
|
public static final String DATE_TOO_EARLY = "date-too-early"; |
44 |
|
public static final String DATE_TOO_LATE = "date-too-late"; |
45 |
|
|
46 |
|
public static final String INVALID_FIELD_EQUALITY = "invalid-field-equality"; |
47 |
|
|
48 |
2 |
private static final String RESOURCE_BUNDLE = ValidationStrings.class.getName(); |
49 |
|
|
50 |
|
private ValidationStrings() |
51 |
0 |
{ |
52 |
|
|
53 |
0 |
} |
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
public static String getMessagePattern(String key, Locale locale) |
60 |
|
{ |
61 |
2 |
return ResourceBundle.getBundle(RESOURCE_BUNDLE, locale).getString(key); |
62 |
|
} |
63 |
|
|
64 |
|
} |