01: /*
02: * Created by IntelliJ IDEA.
03: * User: Matt
04: * Date: Jun 9, 2002
05: * Time: 6:51:40 PM
06: * To change template for new class use
07: * Code Style | Class Templates options (Tools | IDE Options).
08: */
09: package org.apache.ojb.broker;
10:
11: import java.io.Serializable;
12:
13: public class BidirectionalAssociationObjectB implements Serializable {
14: private String pk;
15: private String fkToA;
16: private BidirectionalAssociationObjectA relatedA;
17:
18: public String getPk() {
19: return pk;
20: }
21:
22: public void setPk(String pk) {
23: this .pk = pk;
24: }
25:
26: public String getFkToA() {
27: return fkToA;
28: }
29:
30: public void setFkToA(String fkToA) {
31: this .fkToA = fkToA;
32: }
33:
34: public BidirectionalAssociationObjectA getRelatedA() {
35: return relatedA;
36: }
37:
38: public void setRelatedA(BidirectionalAssociationObjectA relatedA) {
39: this.relatedA = relatedA;
40: }
41: }
|