View Javadoc

1   /**
2    * Copyright 2005-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * TODO Administrator don't forget to fill this in.
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
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       * @see org.kuali.rice.krad.datadictionary.validation.constraint.ValidCharactersPatternConstraint#getRegexString()
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       * @return the allowNegative
63       */
64      @BeanTagAttribute(name = "allowNegative")
65      public boolean isAllowNegative() {
66          return this.allowNegative;
67      }
68  
69      /**
70       * @param allowNegative the allowNegative to set
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       * When set to true, only allows negative numbers (and zero if allowZero is still true)
83       *
84       * @param onlyNegative
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       * When set to true, zero is not allowed in the set of allowed numbers.
97       *
98       * @param omitZero
99       */
100     public void setOmitZero(boolean omitZero) {
101         this.omitZero = omitZero;
102     }
103 
104     /**
105      * This overridden method ...
106      *
107      * @see org.kuali.rice.krad.datadictionary.validation.constraint.ValidDataPatternConstraint#getValidationMessageParams()
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 }