1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.ole.deliver.api.OlePatronNotesContract;
4 import org.kuali.ole.deliver.api.OlePatronNotesDefinition;
5 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
6
7 import java.sql.Timestamp;
8 import java.util.LinkedHashMap;
9
10
11
12
13 public class OlePatronNotes extends PersistableBusinessObjectBase implements OlePatronNotesContract {
14
15 private String patronNoteId;
16 private String olePatronId;
17 private String patronNoteTypeId;
18 private String patronNoteText;
19 private String operatorId;
20 private Timestamp noteCreatedOrUpdatedDate;
21 private boolean active;
22 private OlePatronNoteType olePatronNoteType;
23 private OlePatronDocument olePatron;
24 private boolean selected;
25
26
27
28
29
30
31 public String getPatronNoteId() {
32 return patronNoteId;
33 }
34
35
36
37
38
39
40 public void setPatronNoteId(String patronNoteId) {
41 this.patronNoteId = patronNoteId;
42 }
43
44
45
46
47
48
49 public String getOlePatronId() {
50 return olePatronId;
51 }
52
53
54
55
56
57
58 public void setOlePatronId(String olePatronId) {
59 this.olePatronId = olePatronId;
60 }
61
62
63
64
65
66
67 public String getPatronNoteTypeId() {
68 return patronNoteTypeId;
69 }
70
71
72
73
74
75
76 public void setPatronNoteTypeId(String patronNoteTypeId) {
77 this.patronNoteTypeId = patronNoteTypeId;
78 }
79
80
81
82
83
84
85 public String getPatronNoteText() {
86 return patronNoteText;
87 }
88
89
90
91
92
93
94 public void setPatronNoteText(String patronNoteText) {
95 this.patronNoteText = patronNoteText;
96 }
97
98
99
100
101
102
103 public boolean isActive() {
104 return active;
105 }
106
107
108
109
110
111
112 public void setActive(boolean active) {
113 this.active = active;
114 }
115
116
117
118
119
120
121 public OlePatronNoteType getOlePatronNoteType() {
122 return olePatronNoteType;
123 }
124
125
126
127
128
129
130
131 public void setOlePatronNoteType(OlePatronNoteType olePatronNoteType) {
132 this.olePatronNoteType = olePatronNoteType;
133 }
134
135
136
137
138
139
140 public OlePatronDocument getOlePatron() {
141 return olePatron;
142 }
143
144
145
146
147
148
149 public void setOlePatron(OlePatronDocument olePatron) {
150 this.olePatron = olePatron;
151 }
152
153 protected LinkedHashMap toStringMapper() {
154 LinkedHashMap toStringMap = new LinkedHashMap();
155 toStringMap.put("patronNoteId", patronNoteId);
156 return toStringMap;
157 }
158
159
160
161
162
163
164
165 public static OlePatronNotesDefinition to(OlePatronNotes bo) {
166 if (bo == null) {
167 return null;
168 }
169 return OlePatronNotesDefinition.Builder.create(bo).build();
170 }
171
172
173
174
175
176
177
178 public static OlePatronNotes from(OlePatronNotesDefinition im) {
179 if (im == null) {
180 return null;
181 }
182
183 OlePatronNotes bo = new OlePatronNotes();
184 bo.patronNoteId = im.getPatronNoteId();
185 bo.olePatronId = im.getOlePatronId();
186
187 bo.olePatronNoteType = OlePatronNoteType.from(im.getOlePatronNoteType());
188 bo.patronNoteTypeId = im.getOlePatronNoteType().getPatronNoteTypeId();
189 bo.patronNoteText = im.getPatronNoteText();
190 bo.versionNumber = im.getVersionNumber();
191 return bo;
192 }
193
194
195
196
197
198
199 @Override
200 public String getId() {
201 return this.getPatronNoteId();
202 }
203
204 public boolean isSelected() {
205 return selected;
206 }
207
208 public void setSelected(boolean selected) {
209 this.selected = selected;
210 }
211
212 public String getOperatorId() {
213 return operatorId;
214 }
215
216 public void setOperatorId(String operatorId) {
217 this.operatorId = operatorId;
218 }
219
220 public Timestamp getNoteCreatedOrUpdatedDate() {
221 return noteCreatedOrUpdatedDate;
222 }
223
224 public void setNoteCreatedOrUpdatedDate(Timestamp noteCreatedOrUpdatedDate) {
225 this.noteCreatedOrUpdatedDate = noteCreatedOrUpdatedDate;
226 }
227 }