1 package org.kuali.ole.select.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8
9 public class OLEGOKbMappingValue extends PersistableBusinessObjectBase {
10
11 private String gokbMappingId;
12
13 private String recordId;
14
15 private String dataElementId;
16
17 private String gokbValue;
18
19 private String localValue;
20
21 private String recordType;
22
23 private boolean reset;
24
25 private boolean gokbFlag;
26
27 private GOKbDataElement goKbDataElement;
28
29 public String getGokbMappingId() {
30 return gokbMappingId;
31 }
32
33 public void setGokbMappingId(String gokbMappingId) {
34 this.gokbMappingId = gokbMappingId;
35 }
36
37 public String getRecordId() {
38 return recordId;
39 }
40
41 public void setRecordId(String recordId) {
42 this.recordId = recordId;
43 }
44
45 public String getDataElementId() {
46 return dataElementId;
47 }
48
49 public void setDataElementId(String dataElementId) {
50 this.dataElementId = dataElementId;
51 }
52
53 public String getGokbValue() {
54 return gokbValue;
55 }
56
57 public void setGokbValue(String gokbValue) {
58 this.gokbValue = gokbValue;
59 }
60
61 public String getLocalValue() {
62 return localValue;
63 }
64
65 public void setLocalValue(String localValue) {
66 this.localValue = localValue;
67 }
68
69 public String getRecordType() {
70 return recordType;
71 }
72
73 public void setRecordType(String recordType) {
74 this.recordType = recordType;
75 }
76
77 public boolean isReset() {
78 return reset;
79 }
80
81 public void setReset(boolean reset) {
82 this.reset = reset;
83 }
84
85 public GOKbDataElement getGoKbDataElement() {
86 return goKbDataElement;
87 }
88
89 public void setGoKbDataElement(GOKbDataElement goKbDataElement) {
90 this.goKbDataElement = goKbDataElement;
91 }
92
93 public boolean isGokbFlag() {
94 return gokbFlag;
95 }
96
97 public void setGokbFlag(boolean gokbFlag) {
98 this.gokbFlag = gokbFlag;
99 }
100 }