1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.sql.Date;
6 import java.util.LinkedHashMap;
7
8
9
10
11 public class OlePrivacy extends PersistableBusinessObjectBase {
12
13 private String privacyId;
14 private String privacyCode;
15 private String privacyName;
16 private String source;
17 private Date sourceDate;
18 private boolean active;
19
20
21
22
23
24
25 public String getPrivacyId() {
26 return privacyId;
27 }
28
29
30
31
32
33
34 public void setPrivacyId(String privacyId) {
35 this.privacyId = privacyId;
36 }
37
38
39
40
41
42
43 public String getPrivacyCode() {
44 return privacyCode;
45 }
46
47
48
49
50
51
52 public void setPrivacyCode(String privacyCode) {
53 this.privacyCode = privacyCode;
54 }
55
56
57
58
59
60
61 public String getPrivacyName() {
62 return privacyName;
63 }
64
65
66
67
68
69
70 public void setPrivacyName(String privacyName) {
71 this.privacyName = privacyName;
72 }
73
74
75
76
77
78
79 public String getSource() {
80 return source;
81 }
82
83
84
85
86
87
88 public void setSource(String source) {
89 this.source = source;
90 }
91
92
93
94
95
96
97 public Date getSourceDate() {
98 return sourceDate;
99 }
100
101
102
103
104
105
106 public void setSourceDate(Date sourceDate) {
107 this.sourceDate = sourceDate;
108 }
109
110
111
112
113
114
115 public boolean isActive() {
116 return active;
117 }
118
119
120
121
122
123
124 public void setActive(boolean active) {
125 this.active = active;
126 }
127
128
129
130
131
132
133 protected LinkedHashMap toStringMapper() {
134 LinkedHashMap toStringMap = new LinkedHashMap();
135 toStringMap.put("privacyId", privacyId);
136 toStringMap.put("privacyCode", privacyCode);
137 toStringMap.put("privacyName", privacyName);
138 toStringMap.put("source", source);
139 toStringMap.put("sourceDate", sourceDate);
140 toStringMap.put("active", active);
141 return toStringMap;
142 }
143
144 }
145
146
147
148
149
150
151
152
153
154
155