01: package org.apache.turbine.services.intake;
02:
03: /*
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "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: private String stringRF;
26: private Integer integerRF = null;
27: private int intRF;
28: private Date dateRF;
29:
30: /**
31: * @return the dateRF
32: */
33: public Date getDateRF() {
34: return dateRF;
35: }
36:
37: /**
38: * @param dateRF the dateRF to set
39: */
40: public void setDateRF(Date dateRF) {
41: this .dateRF = dateRF;
42: }
43:
44: /**
45: * @return the integerRF
46: */
47: public Integer getIntegerRF() {
48: return integerRF;
49: }
50:
51: /**
52: * @param integerRF the integerRF to set
53: */
54: public void setIntegerRF(Integer integerRF) {
55: this .integerRF = integerRF;
56: }
57:
58: /**
59: * @return the intRF
60: */
61: public int getIntRF() {
62: return intRF;
63: }
64:
65: /**
66: * @param intRF the intRF to set
67: */
68: public void setIntRF(int intRF) {
69: this .intRF = intRF;
70: }
71:
72: /**
73: * @return the stringRF
74: */
75: public String getStringRF() {
76: return stringRF;
77: }
78:
79: /**
80: * @param stringRF the stringRF to set
81: */
82: public void setStringRF(String stringRF) {
83: this.stringRF = stringRF;
84: }
85: }
|