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.date.jodatime.IsInThePastInstantCondition;
21  
22  /**
23   * An {@link AbstractValidationRule} implementation that validates and checks that a {@link org.joda.time.Instant}
24   * occured in the past (relative to the time of validation).
25   *
26   * @author Uri Boness
27   */
28  public class InstantInThePastValidationRule extends AbstractValidationRule {
29  
30      private final static String DEFAULT_ERROR_CODE = "in.past";
31  
32      /**
33       * Constructs a new InstantInThePastValidationRule.
34       */
35      public InstantInThePastValidationRule() {
36          super(InstantInThePastValidationRule.DEFAULT_ERROR_CODE);
37      }
38  
39      /**
40       * Returns the condition of this validation rule.
41       *
42       * @see org.springmodules.validation.bean.rule.AbstractValidationRule#getCondition()
43       */
44      public Condition getCondition() {
45          return new IsInThePastInstantCondition();
46      }
47  
48  }