01: package org.apache.ojb.odmg.shared;
02:
03: import java.io.Serializable;
04:
05: public class TestClassB implements Serializable {
06: private String oid;
07: private String value1;
08:
09: private String aoid;
10: private TestClassA a;
11:
12: /**
13: * Gets the value1.
14: * @return Returns a String
15: */
16: public String getValue1() {
17: return value1;
18: }
19:
20: /**
21: * Sets the value1.
22: * @param value1 The value1 to set
23: */
24: public void setValue1(String value1) {
25: this .value1 = value1;
26: }
27:
28: /**
29: * Gets the a.
30: * @return Returns a TestClassA
31: */
32: public TestClassA getA() {
33: return a;
34: }
35:
36: /**
37: * Sets the a.
38: * @param a The a to set
39: */
40: public void setA(TestClassA a) {
41: this .a = a;
42: }
43:
44: /**
45: * Gets the oid.
46: * @return Returns a String
47: */
48: public String getOid() {
49: return oid;
50: }
51:
52: /**
53: * Sets the oid.
54: * @param oid The oid to set
55: */
56: public void setOid(String oid) {
57: this .oid = oid;
58: }
59:
60: /**
61: * Gets the aOid.
62: * @return Returns a String
63: */
64: public String getAoid() {
65: return aoid;
66: }
67:
68: /**
69: * Sets the aOid.
70: * @param aoid The aOid to set
71: */
72: public void setAoid(String aoid) {
73: this.aoid = aoid;
74: }
75: }
|