1 package org.kuali.ole.catalog.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 public String getPrivacyId() {
25 return privacyId;
26 }
27
28
29
30
31
32 public void setPrivacyId(String privacyId) {
33 this.privacyId = privacyId;
34 }
35
36
37
38
39
40 public String getPrivacyCode() {
41 return privacyCode;
42 }
43
44
45
46
47
48 public void setPrivacyCode(String privacyCode) {
49 this.privacyCode = privacyCode;
50 }
51
52
53
54
55
56 public String getPrivacyName() {
57 return privacyName;
58 }
59
60
61
62
63
64 public void setPrivacyName(String privacyName) {
65 this.privacyName = privacyName;
66 }
67
68
69
70
71
72 public String getSource() {
73 return source;
74 }
75
76
77
78
79
80 public void setSource(String source) {
81 this.source = source;
82 }
83
84
85
86
87
88 public Date getSourceDate() {
89 return sourceDate;
90 }
91
92
93
94
95
96 public void setSourceDate(Date sourceDate) {
97 this.sourceDate = sourceDate;
98 }
99
100
101
102
103
104 public boolean isActive() {
105 return active;
106 }
107
108
109
110
111
112 public void setActive(boolean active) {
113 this.active = active;
114 }
115
116
117
118
119
120 protected LinkedHashMap toStringMapper() {
121 LinkedHashMap toStringMap = new LinkedHashMap();
122 toStringMap.put("privacyId", privacyId);
123 toStringMap.put("privacyCode", privacyCode);
124 toStringMap.put("privacyName", privacyName);
125 toStringMap.put("source", source);
126 toStringMap.put("sourceDate", sourceDate);
127 toStringMap.put("active", active);
128 return toStringMap;
129 }
130
131 }
132
133
134
135
136
137
138
139
140
141
142