01: /*
02: * Copyright 2004-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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.compass.core.test.querybuilder;
18:
19: import java.util.Date;
20:
21: /**
22: *
23: * @author kimchy
24: *
25: */
26: public class A {
27:
28: private Long id;
29:
30: private String value1;
31:
32: private String value2;
33:
34: private Date date;
35:
36: public Long getId() {
37: return id;
38: }
39:
40: public void setId(Long id) {
41: this .id = id;
42: }
43:
44: public String getValue1() {
45: return value1;
46: }
47:
48: public void setValue1(String value1) {
49: this .value1 = value1;
50: }
51:
52: public String getValue2() {
53: return value2;
54: }
55:
56: public void setValue2(String value2) {
57: this .value2 = value2;
58: }
59:
60: public Date getDate() {
61: return date;
62: }
63:
64: public void setDate(Date date) {
65: this.date = date;
66: }
67: }
|