View Javadoc

1   /*
2    * Copyright 2004-2009 the original author or authors.
3    *
4    * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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  
17  package org.springmodules.validation.bean.rule;
18  
19  import org.springmodules.validation.util.condition.Condition;
20  import org.springmodules.validation.util.condition.Conditions;
21  
22  /**
23   * An {@link AbstractValidationRule} that validates and checks that the length of a string
24   * is greater than or equals a specific lower bound.
25   *
26   * @author Uri Boness
27   */
28  public class MinLengthValidationRule extends AbstractValidationRule {
29  
30      public final static String DEFAULT_ERROR_CODE = "min.length";
31  
32      private int min;
33  
34      /**
35       * Constructs a new MinLengthValidationRule with a given lower bound.
36       *
37       * @param min The lower bound.
38       */
39      public MinLengthValidationRule(int min) {
40          super(MinLengthValidationRule.DEFAULT_ERROR_CODE, createErrorArgumentsResolver(new Integer(min)));
41          this.min = min;
42      }
43  
44      /**
45       * Returns the condition of this validation rule.
46       *
47       * @see org.springmodules.validation.bean.rule.AbstractValidationRule#getCondition()
48       */
49      public Condition getCondition() {
50          return Conditions.minLength(min);
51      }
52  
53      public int getMin() {
54          return min;
55      }
56  
57  }