01: /*
02: * Created by IntelliJ IDEA.
03: * User: Matt
04: * Date: Jun 8, 2002
05: * Time: 3:20:08 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: import java.util.Date;
13:
14: public class Contract implements Serializable {
15: private String pk;
16: private String contractValue1;
17: private int contractValue2;
18: private String contractValue3;
19: private Date contractValue4;
20: private String fkToRelated;
21: private RelatedToContract relatedToContract;
22:
23: public String getFkToRelated() {
24: return fkToRelated;
25: }
26:
27: public void setFkToRelated(String fkToRelated) {
28: this .fkToRelated = fkToRelated;
29: }
30:
31: public RelatedToContract getRelatedToContract() {
32: return relatedToContract;
33: }
34:
35: public void setRelatedToContract(RelatedToContract relatedToContract) {
36: this .relatedToContract = relatedToContract;
37: }
38:
39: public String getPk() {
40: return pk;
41: }
42:
43: public void setPk(String pk) {
44: this .pk = pk;
45: }
46:
47: public String getContractValue1() {
48: return contractValue1;
49: }
50:
51: public void setContractValue1(String contractValue1) {
52: this .contractValue1 = contractValue1;
53: }
54:
55: public int getContractValue2() {
56: return contractValue2;
57: }
58:
59: public void setContractValue2(int contractValue2) {
60: this .contractValue2 = contractValue2;
61: }
62:
63: public String getContractValue3() {
64: return contractValue3;
65: }
66:
67: public void setContractValue3(String contractValue3) {
68: this .contractValue3 = contractValue3;
69: }
70:
71: public Date getContractValue4() {
72: return contractValue4;
73: }
74:
75: public void setContractValue4(Date contractValue4) {
76: this.contractValue4 = contractValue4;
77: }
78: }
|