01: package org.compass.core.test.collection;
02:
03: /**
04: * @author kimchy
05: */
06: public class Y {
07:
08: private Long id;
09:
10: private String value;
11:
12: /**
13: * @return Returns the value.
14: */
15: public String getValue() {
16: return value;
17: }
18:
19: /**
20: * @param value
21: * The value to set.
22: */
23: public void setValue(String value) {
24: this .value = value;
25: }
26:
27: /**
28: * @return Returns the id.
29: */
30: public Long getId() {
31: return id;
32: }
33:
34: /**
35: * @param id
36: * The id to set.
37: */
38: public void setId(Long id) {
39: this.id = id;
40: }
41: }
|