01: package org.compass.core.test.component;
02:
03: /**
04: * @author kimchy
05: */
06: public class SimpleComponentId {
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 The value to set.
21: */
22: public void setValue(String value) {
23: this .value = value;
24: }
25:
26: public Long getId() {
27: return id;
28: }
29:
30: public void setId(Long id) {
31: this.id = id;
32: }
33: }
|