1   package org.apache.turbine.services.intake;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.Date;
23  
24  public class RequiredFalseGroupTestObject
25  {
26      private String stringRF;
27      private Integer integerRF = null;
28      private int intRF;
29      private Date dateRF;
30  
31      /***
32       * @return the dateRF
33       */
34      public Date getDateRF()
35      {
36          return dateRF;
37      }
38  
39      /***
40       * @param dateRF the dateRF to set
41       */
42      public void setDateRF(Date dateRF)
43      {
44          this.dateRF = dateRF;
45      }
46  
47      /***
48       * @return the integerRF
49       */
50      public Integer getIntegerRF()
51      {
52          return integerRF;
53      }
54  
55      /***
56       * @param integerRF the integerRF to set
57       */
58      public void setIntegerRF(Integer integerRF)
59      {
60          this.integerRF = integerRF;
61      }
62  
63      /***
64       * @return the intRF
65       */
66      public int getIntRF()
67      {
68          return intRF;
69      }
70      
71      /***
72       * @param intRF the intRF to set
73       */
74      public void setIntRF(int intRF)
75      {
76          this.intRF = intRF;
77      }
78      
79      /***
80       * @return the stringRF
81       */
82      public String getStringRF()
83      {
84          return stringRF;
85      }
86  
87      /***
88       * @param stringRF the stringRF to set
89       */
90      public void setStringRF(String stringRF)
91      {
92          this.stringRF = stringRF;
93      }
94  }