01: package org.compass.core.test.component;
02:
03: /**
04: * @author kimchy
05: */
06: public class SimpleRootId {
07:
08: private Long id;
09:
10: private String value;
11:
12: private SimpleComponentId firstComponent;
13:
14: private SimpleComponentId secondComponent;
15:
16: public Long getId() {
17: return id;
18: }
19:
20: public void setId(Long id) {
21: this .id = id;
22: }
23:
24: public String getValue() {
25: return value;
26: }
27:
28: public void setValue(String value) {
29: this .value = value;
30: }
31:
32: public SimpleComponentId getSecondComponent() {
33: return secondComponent;
34: }
35:
36: public void setSecondComponent(SimpleComponentId comp) {
37: this .secondComponent = comp;
38: }
39:
40: public SimpleComponentId getFirstComponent() {
41: return firstComponent;
42: }
43:
44: public void setFirstComponent(SimpleComponentId comp) {
45: this.firstComponent = comp;
46: }
47: }
|