1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.datadictionary.validation.constraint;
17
18 import org.kuali.rice.core.api.config.property.ConfigurationService;
19 import org.kuali.rice.krad.datadictionary.parse.BeanTag;
20 import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
21 import org.kuali.rice.krad.service.KRADServiceLocator;
22 import org.kuali.rice.krad.uif.UifConstants;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27
28
29
30
31
32 @BeanTag(name = "integerPatternConstraint")
33 public class IntegerPatternConstraint extends ValidDataPatternConstraint {
34 protected boolean allowNegative;
35 protected boolean onlyNegative;
36 protected boolean omitZero;
37
38
39
40
41 @Override
42 protected String getRegexString() {
43 StringBuffer regex = new StringBuffer();
44
45 if (isAllowNegative() && !onlyNegative) {
46 regex.append("((-?");
47 } else if (onlyNegative) {
48 regex.append("((-");
49 } else {
50 regex.append("((");
51 }
52 if (omitZero) {
53 regex.append("[1-9][0-9]*))");
54 } else {
55 regex.append("[1-9][0-9]*)|[0]*)");
56 }
57
58 return regex.toString();
59 }
60
61
62
63
64 @BeanTagAttribute(name = "allowNegative")
65 public boolean isAllowNegative() {
66 return this.allowNegative;
67 }
68
69
70
71
72 public void setAllowNegative(boolean allowNegative) {
73 this.allowNegative = allowNegative;
74 }
75
76 @BeanTagAttribute(name = "onlyNegative")
77 public boolean isOnlyNegative() {
78 return onlyNegative;
79 }
80
81
82
83
84
85
86 public void setOnlyNegative(boolean onlyNegative) {
87 this.onlyNegative = onlyNegative;
88 }
89
90 @BeanTagAttribute(name = "omitZero")
91 public boolean isOmitZero() {
92 return omitZero;
93 }
94
95
96
97
98
99
100 public void setOmitZero(boolean omitZero) {
101 this.omitZero = omitZero;
102 }
103
104
105
106
107
108
109 @Override
110 public List<String> getValidationMessageParams() {
111 if (validationMessageParams == null) {
112 validationMessageParams = new ArrayList<String>();
113 ConfigurationService configService = KRADServiceLocator.getKualiConfigurationService();
114 if (allowNegative && !onlyNegative) {
115 if (omitZero) {
116 validationMessageParams.add(configService.getPropertyValueAsString(
117 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "positiveOrNegative"));
118 } else {
119 validationMessageParams.add(configService.getPropertyValueAsString(
120 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "positiveOrNegativeOrZero"));
121 }
122 } else if (onlyNegative) {
123 if (omitZero) {
124 validationMessageParams.add(configService.getPropertyValueAsString(
125 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "negative"));
126 } else {
127 validationMessageParams.add(configService.getPropertyValueAsString(
128 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "negativeOrZero"));
129 }
130 } else {
131 if (omitZero) {
132 validationMessageParams.add(configService.getPropertyValueAsString(
133 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "positive"));
134 } else {
135 validationMessageParams.add(configService.getPropertyValueAsString(
136 UifConstants.Messages.VALIDATION_MSG_KEY_PREFIX + "positiveOrZero"));
137 }
138 }
139 }
140 return validationMessageParams;
141 }
142 }