1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.api.preferences; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.Collection; |
20 | |
import java.util.Map; |
21 | |
|
22 | |
import javax.xml.bind.annotation.XmlAccessType; |
23 | |
import javax.xml.bind.annotation.XmlAccessorType; |
24 | |
import javax.xml.bind.annotation.XmlAnyElement; |
25 | |
import javax.xml.bind.annotation.XmlElement; |
26 | |
import javax.xml.bind.annotation.XmlRootElement; |
27 | |
import javax.xml.bind.annotation.XmlType; |
28 | |
|
29 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
30 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
31 | |
import org.kuali.rice.kew.api.KewApiConstants; |
32 | |
import org.w3c.dom.Element; |
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
@XmlRootElement(name = Preferences.Constants.ROOT_ELEMENT_NAME) |
45 | |
@XmlAccessorType(XmlAccessType.NONE) |
46 | |
@XmlType(name = Preferences.Constants.TYPE_NAME) |
47 | |
public final class Preferences extends AbstractDataTransferObject implements PreferencesContract { |
48 | |
|
49 | |
private static final long serialVersionUID = 642820621349964439L; |
50 | |
|
51 | |
@XmlElement(name = Elements.REQUIRES_SAVE) |
52 | |
private final boolean requiresSave; |
53 | |
@XmlElement(name = Elements.EMAIL_NOTIFICATION) |
54 | |
private final String emailNotification; |
55 | |
@XmlElement(name = Elements.NOTIFY_PRIMARY_DELEGATION) |
56 | |
private final String notifyPrimaryDelegation; |
57 | |
@XmlElement(name = Elements.NOTIFY_SECONDARY_DELEGATION) |
58 | |
private final String notifySecondaryDelegation; |
59 | |
@XmlElement(name = Elements.OPEN_NEW_WINDOW) |
60 | |
private final String openNewWindow; |
61 | |
@XmlElement(name = Elements.SHOW_ACTION_REQUESTED) |
62 | |
private final String showActionRequested; |
63 | |
@XmlElement(name = Elements.SHOW_DATE_CREATED) |
64 | |
private final String showDateCreated; |
65 | |
@XmlElement(name = Elements.SHOW_DOCUMENT_STATUS) |
66 | |
private final String showDocumentStatus; |
67 | |
@XmlElement(name = Elements.SHOW_APP_DOC_STATUS) |
68 | |
private final String showAppDocStatus; |
69 | |
@XmlElement(name = Elements.SHOW_DOC_TYPE) |
70 | |
private final String showDocType; |
71 | |
@XmlElement(name = Elements.SHOW_INITIATOR) |
72 | |
private final String showInitiator; |
73 | |
@XmlElement(name = Elements.SHOW_DOC_TITLE) |
74 | |
private final String showDocTitle; |
75 | |
@XmlElement(name = Elements.SHOW_WORKGROUP_REQUEST) |
76 | |
private final String showWorkgroupRequest; |
77 | |
@XmlElement(name = Elements.SHOW_DELEGATOR) |
78 | |
private final String showDelegator; |
79 | |
@XmlElement(name = Elements.SHOW_CLEAR_FYI) |
80 | |
private final String showClearFyi; |
81 | |
@XmlElement(name = Elements.PAGE_SIZE) |
82 | |
private final String pageSize; |
83 | |
@XmlElement(name = Elements.REFRESH_RATE) |
84 | |
private final String refreshRate; |
85 | |
@XmlElement(name = Elements.COLOR_SAVED) |
86 | |
private final String colorSaved; |
87 | |
@XmlElement(name = Elements.COLOR_INITIATED) |
88 | |
private final String colorInitiated; |
89 | |
@XmlElement(name = Elements.COLOR_DISAPPROVED) |
90 | |
private final String colorDisapproved; |
91 | |
@XmlElement(name = Elements.COLOR_ENROUTE) |
92 | |
private final String colorEnroute; |
93 | |
@XmlElement(name = Elements.COLOR_APPROVED) |
94 | |
private final String colorApproved; |
95 | |
@XmlElement(name = Elements.COLOR_FINAL) |
96 | |
private final String colorFinal; |
97 | |
@XmlElement(name = Elements.COLOR_DISAPPROVE_CANCEL) |
98 | |
private final String colorDisapproveCancel; |
99 | |
@XmlElement(name = Elements.COLOR_PROCESSED) |
100 | |
private final String colorProcessed; |
101 | |
@XmlElement(name = Elements.COLOR_EXCEPTION) |
102 | |
private final String colorException; |
103 | |
@XmlElement(name = Elements.COLOR_CANCELED) |
104 | |
private final String colorCanceled; |
105 | |
@XmlElement(name = Elements.DELEGATOR_FILTER) |
106 | |
private final String delegatorFilter; |
107 | |
@XmlElement(name = Elements.USE_OUTBOX) |
108 | |
private final String useOutbox; |
109 | |
@XmlElement(name = Elements.SHOW_DATE_APPROVED) |
110 | |
private final String showDateApproved; |
111 | |
@XmlElement(name = Elements.SHOW_CURRENT_NODE) |
112 | |
private final String showCurrentNode; |
113 | |
@XmlElement(name = Elements.PRIMARY_DELEGATE_FILTER) |
114 | |
private final String primaryDelegateFilter; |
115 | |
@XmlElement(name = Elements.NOTIFY_ACKNOWLEDGE) |
116 | |
private final String notifyAcknowledge; |
117 | |
@XmlElement(name = Elements.NOTIFY_APPROVE) |
118 | |
private final String notifyApprove; |
119 | |
@XmlElement(name = Elements.NOTIFY_COMPLETE) |
120 | |
private final String notifyComplete; |
121 | |
@XmlElement(name = Elements.NOTIFY_FYI) |
122 | |
private final String notifyFYI; |
123 | |
|
124 | 0 | @SuppressWarnings("unused") |
125 | |
@XmlAnyElement |
126 | |
private final Collection<Element> _futureElements = null; |
127 | |
|
128 | 0 | private Preferences() { |
129 | 0 | this.emailNotification = null; |
130 | 0 | this.notifyPrimaryDelegation = null; |
131 | 0 | this.notifySecondaryDelegation = null; |
132 | 0 | this.openNewWindow = null; |
133 | 0 | this.showActionRequested = null; |
134 | 0 | this.showDateCreated = null; |
135 | 0 | this.showDocumentStatus = null; |
136 | 0 | this.showAppDocStatus = null; |
137 | 0 | this.showDocType = null; |
138 | 0 | this.showInitiator = null; |
139 | 0 | this.showDocTitle = null; |
140 | 0 | this.showWorkgroupRequest = null; |
141 | 0 | this.showDelegator = null; |
142 | 0 | this.showClearFyi = null; |
143 | 0 | this.pageSize = null; |
144 | 0 | this.refreshRate = null; |
145 | 0 | this.colorSaved = null; |
146 | 0 | this.colorInitiated = null; |
147 | 0 | this.colorDisapproved = null; |
148 | 0 | this.colorEnroute = null; |
149 | 0 | this.colorApproved = null; |
150 | 0 | this.colorFinal = null; |
151 | 0 | this.colorDisapproveCancel = null; |
152 | 0 | this.colorProcessed = null; |
153 | 0 | this.colorException = null; |
154 | 0 | this.colorCanceled = null; |
155 | 0 | this.delegatorFilter = null; |
156 | 0 | this.useOutbox = null; |
157 | 0 | this.showDateApproved = null; |
158 | 0 | this.showCurrentNode = null; |
159 | 0 | this.primaryDelegateFilter = null; |
160 | 0 | this.notifyAcknowledge = null; |
161 | 0 | this.notifyApprove = null; |
162 | 0 | this.notifyComplete = null; |
163 | 0 | this.notifyFYI = null; |
164 | |
|
165 | 0 | this.requiresSave = false; |
166 | 0 | } |
167 | |
|
168 | 0 | public Preferences(Builder builder) { |
169 | 0 | this.emailNotification = builder.getEmailNotification(); |
170 | 0 | this.notifyPrimaryDelegation = builder.getNotifyPrimaryDelegation(); |
171 | 0 | this.notifySecondaryDelegation = builder.getNotifySecondaryDelegation(); |
172 | 0 | this.openNewWindow = builder.getOpenNewWindow(); |
173 | 0 | this.showActionRequested = builder.getShowActionRequested(); |
174 | 0 | this.showDateCreated = builder.getShowDateCreated(); |
175 | 0 | this.showDocumentStatus = builder.getShowDocumentStatus(); |
176 | 0 | this.showAppDocStatus = builder.getShowAppDocStatus(); |
177 | 0 | this.showDocType = builder.getShowDocType(); |
178 | 0 | this.showInitiator = builder.getShowInitiator(); |
179 | 0 | this.showDocTitle = builder.getShowDocTitle(); |
180 | 0 | this.showWorkgroupRequest = builder.getShowWorkgroupRequest(); |
181 | 0 | this.showDelegator = builder.getShowDelegator(); |
182 | 0 | this.showClearFyi = builder.getShowClearFyi(); |
183 | 0 | this.pageSize = builder.getPageSize(); |
184 | 0 | this.refreshRate = builder.getRefreshRate(); |
185 | 0 | this.colorSaved = builder.getColorSaved(); |
186 | 0 | this.colorInitiated = builder.getColorInitiated(); |
187 | 0 | this.colorDisapproved = builder.getColorDisapproved(); |
188 | 0 | this.colorEnroute = builder.getColorEnroute(); |
189 | 0 | this.colorApproved = builder.getColorApproved(); |
190 | 0 | this.colorFinal = builder.getColorFinal(); |
191 | 0 | this.colorDisapproveCancel = builder.getColorDisapproveCancel(); |
192 | 0 | this.colorProcessed = builder.getColorProcessed(); |
193 | 0 | this.colorException = builder.getColorException(); |
194 | 0 | this.colorCanceled = builder.getColorCanceled(); |
195 | 0 | this.delegatorFilter = builder.getDelegatorFilter(); |
196 | 0 | this.useOutbox = builder.getUseOutbox(); |
197 | 0 | this.showDateApproved = builder.getShowDateApproved(); |
198 | 0 | this.showCurrentNode = builder.getShowCurrentNode(); |
199 | 0 | this.primaryDelegateFilter = builder.getPrimaryDelegateFilter(); |
200 | 0 | this.requiresSave = builder.isRequiresSave(); |
201 | 0 | this.notifyAcknowledge = builder.getNotifyAcknowledge(); |
202 | 0 | this.notifyApprove = builder.getNotifyApprove(); |
203 | 0 | this.notifyComplete = builder.getNotifyComplete(); |
204 | 0 | this.notifyFYI = builder.getNotifyFYI(); |
205 | 0 | } |
206 | |
|
207 | |
public boolean isRequiresSave() { |
208 | 0 | return requiresSave; |
209 | |
} |
210 | |
|
211 | |
public String getEmailNotification() { |
212 | 0 | return emailNotification; |
213 | |
} |
214 | |
|
215 | |
public String getNotifyPrimaryDelegation() { |
216 | 0 | return notifyPrimaryDelegation; |
217 | |
} |
218 | |
|
219 | |
public String getNotifySecondaryDelegation() { |
220 | 0 | return notifySecondaryDelegation; |
221 | |
} |
222 | |
|
223 | |
public String getOpenNewWindow() { |
224 | 0 | return openNewWindow; |
225 | |
} |
226 | |
|
227 | |
public String getShowActionRequested() { |
228 | 0 | return showActionRequested; |
229 | |
} |
230 | |
|
231 | |
public String getShowDateCreated() { |
232 | 0 | return showDateCreated; |
233 | |
} |
234 | |
|
235 | |
public String getShowDocumentStatus() { |
236 | 0 | return showDocumentStatus; |
237 | |
} |
238 | |
|
239 | |
public String getShowAppDocStatus() { |
240 | 0 | return showAppDocStatus; |
241 | |
} |
242 | |
|
243 | |
public String getShowDocType() { |
244 | 0 | return showDocType; |
245 | |
} |
246 | |
|
247 | |
public String getShowInitiator() { |
248 | 0 | return showInitiator; |
249 | |
} |
250 | |
|
251 | |
public String getShowDocTitle() { |
252 | 0 | return showDocTitle; |
253 | |
} |
254 | |
|
255 | |
public String getShowWorkgroupRequest() { |
256 | 0 | return showWorkgroupRequest; |
257 | |
} |
258 | |
|
259 | |
public String getShowDelegator() { |
260 | 0 | return showDelegator; |
261 | |
} |
262 | |
|
263 | |
public String getShowClearFyi() { |
264 | 0 | return showClearFyi; |
265 | |
} |
266 | |
|
267 | |
public String getPageSize() { |
268 | 0 | return pageSize; |
269 | |
} |
270 | |
|
271 | |
public String getRefreshRate() { |
272 | 0 | return refreshRate; |
273 | |
} |
274 | |
|
275 | |
public String getColorSaved() { |
276 | 0 | return colorSaved; |
277 | |
} |
278 | |
|
279 | |
public String getColorInitiated() { |
280 | 0 | return colorInitiated; |
281 | |
} |
282 | |
|
283 | |
public String getColorDisapproved() { |
284 | 0 | return colorDisapproved; |
285 | |
} |
286 | |
|
287 | |
public String getColorEnroute() { |
288 | 0 | return colorEnroute; |
289 | |
} |
290 | |
|
291 | |
public String getColorApproved() { |
292 | 0 | return colorApproved; |
293 | |
} |
294 | |
|
295 | |
public String getColorFinal() { |
296 | 0 | return colorFinal; |
297 | |
} |
298 | |
|
299 | |
public String getColorDisapproveCancel() { |
300 | 0 | return colorDisapproveCancel; |
301 | |
} |
302 | |
|
303 | |
public String getColorProcessed() { |
304 | 0 | return colorProcessed; |
305 | |
} |
306 | |
|
307 | |
public String getColorException() { |
308 | 0 | return colorException; |
309 | |
} |
310 | |
|
311 | |
public String getColorCanceled() { |
312 | 0 | return colorCanceled; |
313 | |
} |
314 | |
|
315 | |
public String getDelegatorFilter() { |
316 | 0 | return delegatorFilter; |
317 | |
} |
318 | |
|
319 | |
public String getUseOutbox() { |
320 | 0 | return useOutbox; |
321 | |
} |
322 | |
|
323 | |
public String getShowDateApproved() { |
324 | 0 | return showDateApproved; |
325 | |
} |
326 | |
|
327 | |
public String getShowCurrentNode() { |
328 | 0 | return showCurrentNode; |
329 | |
} |
330 | |
|
331 | |
public String getPrimaryDelegateFilter() { |
332 | 0 | return primaryDelegateFilter; |
333 | |
} |
334 | |
|
335 | |
public String getNotifyComplete() { |
336 | 0 | return this.notifyComplete; |
337 | |
} |
338 | |
|
339 | |
public String getNotifyApprove() { |
340 | 0 | return this.notifyApprove; |
341 | |
} |
342 | |
|
343 | |
public String getNotifyAcknowledge() { |
344 | 0 | return this.notifyAcknowledge; |
345 | |
} |
346 | |
|
347 | |
public String getNotifyFYI() { |
348 | 0 | return this.notifyFYI; |
349 | |
} |
350 | |
|
351 | |
public boolean isUsingOutbox() { |
352 | 0 | if (this.getUseOutbox() != null && this.getUseOutbox().equals(Constants.PREFERENCES_YES_VAL)) { |
353 | 0 | return true; |
354 | |
} |
355 | 0 | return false; |
356 | |
} |
357 | |
|
358 | 0 | public final static class Builder |
359 | |
implements Serializable, ModelBuilder, PreferencesContract |
360 | |
{ |
361 | |
|
362 | 0 | private boolean requiresSave = false; |
363 | |
|
364 | |
private String emailNotification; |
365 | |
private String notifyPrimaryDelegation; |
366 | |
private String notifySecondaryDelegation; |
367 | |
private String openNewWindow; |
368 | |
private String showActionRequested; |
369 | |
private String showDateCreated; |
370 | |
private String showDocumentStatus; |
371 | |
private String showAppDocStatus; |
372 | |
private String showDocType; |
373 | |
private String showInitiator; |
374 | |
private String showDocTitle; |
375 | |
private String showWorkgroupRequest; |
376 | |
private String showDelegator; |
377 | |
private String showClearFyi; |
378 | |
private String pageSize; |
379 | |
private String refreshRate; |
380 | |
private String colorSaved; |
381 | |
private String colorInitiated; |
382 | |
private String colorDissaproved; |
383 | |
private String colorEnroute; |
384 | |
private String colorApproved; |
385 | |
private String colorFinal; |
386 | |
private String colorDissapproveCancel; |
387 | |
private String colorProccessed; |
388 | |
private String colorException; |
389 | |
private String colorCanceled; |
390 | |
private String delegatorFilter; |
391 | |
private String useOutbox; |
392 | |
private String showDateApproved; |
393 | |
private String showCurrentNode; |
394 | |
private String primaryDelegateFilter; |
395 | |
private String notifyAcknowledge; |
396 | |
private String notifyApprove; |
397 | |
private String notifyComplete; |
398 | |
private String notifyFYI; |
399 | |
|
400 | 0 | private Builder() { |
401 | |
|
402 | 0 | } |
403 | |
|
404 | |
private Builder(String emailNotification, String notifyPrimaryDelegation, String notifySecondaryDelegation, |
405 | |
String openNewWindow, String showActionRequested, String showDateCreated, String showDocumentStatus, |
406 | |
String showAppDocStatus, String showDocType, String showInitiator, String showDocTitle, |
407 | |
String showWorkgroupRequest, String showDelegator, String showClearFyi, String pageSize, String refreshRate, |
408 | |
String colorSaved, String colorInitiated, String colorDissaproved, String colorEnroute, |
409 | |
String colorApproved, String colorFinal, String colorDissapproveCancel, String colorProccessed, |
410 | |
String colorException, String colorCanceled, String delegatorFilter, String useOutbox, |
411 | |
String showDateApproved, String showCurrentNode, String primaryDelegateFilter, String notifyAcknowledge, |
412 | 0 | String notifyApprove, String notifyComplete, String notifyFYI, boolean requiresSave) { |
413 | 0 | this.emailNotification = emailNotification; |
414 | 0 | this.notifyPrimaryDelegation = notifyPrimaryDelegation; |
415 | 0 | this.notifySecondaryDelegation = notifySecondaryDelegation; |
416 | 0 | this.openNewWindow = openNewWindow; |
417 | 0 | this.showActionRequested = showActionRequested; |
418 | 0 | this.showDateCreated = showDateCreated; |
419 | 0 | this.showDocumentStatus = showDocumentStatus; |
420 | 0 | this.showAppDocStatus = showAppDocStatus; |
421 | 0 | this.showDocType = showDocType; |
422 | 0 | this.showInitiator = showInitiator; |
423 | 0 | this.showDocTitle = showDocTitle; |
424 | 0 | this.showWorkgroupRequest = showWorkgroupRequest; |
425 | 0 | this.showDelegator = showDelegator; |
426 | 0 | this.showClearFyi = showClearFyi; |
427 | 0 | this.pageSize = pageSize; |
428 | 0 | this.refreshRate = refreshRate; |
429 | 0 | this.colorSaved = colorSaved; |
430 | 0 | this.colorInitiated = colorInitiated; |
431 | 0 | this.colorDissaproved = colorDissaproved; |
432 | 0 | this.colorEnroute = colorEnroute; |
433 | 0 | this.colorApproved = colorApproved; |
434 | 0 | this.colorFinal = colorFinal; |
435 | 0 | this.colorDissapproveCancel = colorDissapproveCancel; |
436 | 0 | this.colorProccessed = colorProccessed; |
437 | 0 | this.colorException = colorException; |
438 | 0 | this.colorCanceled = colorCanceled; |
439 | 0 | this.delegatorFilter = delegatorFilter; |
440 | 0 | this.useOutbox = useOutbox; |
441 | 0 | this.showDateApproved = showDateApproved; |
442 | 0 | this.showCurrentNode = showCurrentNode; |
443 | 0 | this.primaryDelegateFilter = primaryDelegateFilter; |
444 | 0 | this.requiresSave = requiresSave; |
445 | 0 | this.notifyAcknowledge = notifyAcknowledge; |
446 | 0 | this.notifyApprove = notifyApprove; |
447 | 0 | this.notifyComplete = notifyComplete; |
448 | 0 | this.notifyFYI = notifyFYI; |
449 | 0 | } |
450 | |
|
451 | |
public Preferences build() { |
452 | 0 | return new Preferences(this); |
453 | |
} |
454 | |
|
455 | |
public static Builder create() { |
456 | 0 | return new Builder(); |
457 | |
} |
458 | |
|
459 | |
public static Builder create(String emailNotification, String notifyPrimaryDelegation, String notifySecondaryDelegation, |
460 | |
String openNewWindow, String showActionRequested, String showDateCreated, String showDocumentStatus, |
461 | |
String showAppDocStatus, String showDocType, String showInitiator, String showDocTitle, |
462 | |
String showWorkgroupRequest, String showDelegator, String showClearFyi, String pageSize, String refreshRate, |
463 | |
String colorSaved, String colorInitiated, String colorDissaproved, String colorEnroute, |
464 | |
String colorApproved, String colorFinal, String colorDissapproveCancel, String colorProccessed, |
465 | |
String colorException, String colorCanceled, String delegatorFilter, String useOutbox, |
466 | |
String showDateApproved, String showCurrentNode, String primaryDelegateFilter, String notifyAcknowledge, |
467 | |
String notifyApprove, String notifyComplete, String notifyFYI, boolean requiresSave) { |
468 | 0 | return new Builder(emailNotification, notifyPrimaryDelegation, notifySecondaryDelegation, openNewWindow, showActionRequested, showDateCreated, |
469 | |
showDocumentStatus, showAppDocStatus, showDocType, showInitiator, showDocTitle, showWorkgroupRequest, showDelegator, showClearFyi, |
470 | |
pageSize, refreshRate, colorSaved, colorInitiated, colorDissaproved, colorEnroute, colorApproved, colorFinal, colorDissapproveCancel, |
471 | |
colorProccessed, colorException, colorCanceled, delegatorFilter, useOutbox, showDateApproved, showCurrentNode, primaryDelegateFilter, |
472 | |
notifyAcknowledge, notifyApprove, notifyComplete, notifyFYI, requiresSave); |
473 | |
} |
474 | |
|
475 | |
public static Builder create(PreferencesContract contract) { |
476 | 0 | if (contract == null) { |
477 | 0 | throw new IllegalArgumentException("contract was null"); |
478 | |
} |
479 | 0 | Builder builder = create(contract.getEmailNotification(), contract.getNotifyPrimaryDelegation(), contract.getNotifySecondaryDelegation(), contract.getOpenNewWindow(), |
480 | |
contract.getShowActionRequested(), contract.getShowDateCreated(), contract.getShowDocumentStatus(), contract.getShowAppDocStatus(), contract.getShowDocType(), |
481 | |
contract.getShowInitiator(), contract.getShowDocTitle(), contract.getShowWorkgroupRequest(), contract.getShowDelegator(), contract.getShowClearFyi(), |
482 | |
contract.getPageSize(), contract.getRefreshRate(), contract.getColorSaved(), contract.getColorInitiated(), contract.getColorDisapproved(), |
483 | |
contract.getColorEnroute(), contract.getColorApproved(), contract.getColorFinal(), contract.getColorDisapproveCancel(), contract.getColorProcessed(), |
484 | |
contract.getColorException(), contract.getColorCanceled(), contract.getDelegatorFilter(), contract.getUseOutbox(), contract.getShowDateApproved(), |
485 | |
contract.getShowCurrentNode(), contract.getPrimaryDelegateFilter(), contract.getNotifyAcknowledge(), contract.getNotifyApprove(), contract.getNotifyComplete(), |
486 | |
contract.getNotifyFYI(), contract.isRequiresSave()); |
487 | 0 | return builder; |
488 | |
} |
489 | |
|
490 | |
public static Builder create(Map<String, String> map, boolean requiresSave) { |
491 | 0 | Builder builder = create(map.get(KEYS.EMAIL_NOTIFICATION), map.get(KEYS.NOTIFY_PRIMARY_DELEGATION), map.get(KEYS.NOTIFY_SECONDARY_DELEGATION), map.get(KEYS.OPEN_NEW_WINDOW), |
492 | |
map.get(KEYS.SHOW_ACTION_REQUESTED), map.get(KEYS.SHOW_DATE_CREATED), map.get(KEYS.SHOW_DOCUMENT_STATUS), map.get(KEYS.SHOW_APP_DOC_STATUS), map.get(KEYS.SHOW_DOC_TYPE), |
493 | |
map.get(KEYS.SHOW_INITIATOR), map.get(KEYS.SHOW_DOC_TITLE), map.get(KEYS.SHOW_GROUP_REQUEST), map.get(KEYS.SHOW_DELEGATOR), map.get(KEYS.SHOW_CLEAR_FYI), |
494 | |
map.get(KEYS.PAGE_SIZE), map.get(KEYS.REFRESH_RATE), map.get(KEYS.COLOR_SAVED), map.get(KEYS.COLOR_INITIATED), map.get(KEYS.COLOR_DISAPPROVED), |
495 | |
map.get(KEYS.COLOR_ENROUTE), map.get(KEYS.COLOR_APPROVED), map.get(KEYS.COLOR_FINAL), map.get(KEYS.COLOR_DISAPPROVE_CANCEL), map.get(KEYS.COLOR_PROCESSED), |
496 | |
map.get(KEYS.COLOR_EXCEPTION), map.get(KEYS.COLOR_CANCELED), map.get(KEYS.DELEGATOR_FILTER), map.get(KEYS.USE_OUT_BOX), map.get(KEYS.SHOW_DATE_APPROVED), |
497 | |
map.get(KEYS.SHOW_CURRENT_NODE), map.get(KEYS.PRIMARY_DELEGATE_FILTER), map.get(KEYS.NOTIFY_ACKNOWLEDGE), map.get(KEYS.NOTIFY_APPROVE), map.get(KEYS.NOTIFY_COMPLETE), |
498 | |
map.get(KEYS.NOTIFY_FYI), requiresSave); |
499 | 0 | return builder; |
500 | |
} |
501 | |
|
502 | |
public synchronized boolean isRequiresSave() { |
503 | 0 | return requiresSave; |
504 | |
} |
505 | |
|
506 | |
public synchronized void setRequiresSave(boolean requiresSave) { |
507 | 0 | this.requiresSave = requiresSave; |
508 | 0 | } |
509 | |
|
510 | |
public synchronized String getEmailNotification() { |
511 | 0 | return emailNotification; |
512 | |
} |
513 | |
|
514 | |
public synchronized void setEmailNotification(String emailNotification) { |
515 | 0 | this.emailNotification = emailNotification; |
516 | 0 | } |
517 | |
|
518 | |
public synchronized String getNotifyPrimaryDelegation() { |
519 | 0 | return notifyPrimaryDelegation; |
520 | |
} |
521 | |
|
522 | |
public synchronized void setNotifyPrimaryDelegation(String notifyPrimaryDelegation) { |
523 | 0 | this.notifyPrimaryDelegation = notifyPrimaryDelegation; |
524 | 0 | } |
525 | |
|
526 | |
public synchronized String getNotifySecondaryDelegation() { |
527 | 0 | return notifySecondaryDelegation; |
528 | |
} |
529 | |
|
530 | |
public synchronized void setNotifySecondaryDelegation(String notifySecondaryDelegation) { |
531 | 0 | this.notifySecondaryDelegation = notifySecondaryDelegation; |
532 | 0 | } |
533 | |
|
534 | |
public synchronized String getOpenNewWindow() { |
535 | 0 | return openNewWindow; |
536 | |
} |
537 | |
|
538 | |
public synchronized void setOpenNewWindow(String openNewWindow) { |
539 | 0 | this.openNewWindow = openNewWindow; |
540 | 0 | } |
541 | |
|
542 | |
public synchronized String getShowActionRequested() { |
543 | 0 | return showActionRequested; |
544 | |
} |
545 | |
|
546 | |
public synchronized void setShowActionRequested(String showActionRequested) { |
547 | 0 | this.showActionRequested = showActionRequested; |
548 | 0 | } |
549 | |
|
550 | |
public synchronized String getShowDateCreated() { |
551 | 0 | return showDateCreated; |
552 | |
} |
553 | |
|
554 | |
public synchronized void setShowDateCreated(String showDateCreated) { |
555 | 0 | this.showDateCreated = showDateCreated; |
556 | 0 | } |
557 | |
|
558 | |
public synchronized String getShowDocumentStatus() { |
559 | 0 | return showDocumentStatus; |
560 | |
} |
561 | |
|
562 | |
public synchronized void setShowDocumentStatus(String showDocumentStatus) { |
563 | 0 | this.showDocumentStatus = showDocumentStatus; |
564 | 0 | } |
565 | |
|
566 | |
public synchronized String getShowAppDocStatus() { |
567 | 0 | return showAppDocStatus; |
568 | |
} |
569 | |
|
570 | |
public synchronized void setShowAppDocStatus(String showAppDocStatus) { |
571 | 0 | this.showAppDocStatus = showAppDocStatus; |
572 | 0 | } |
573 | |
|
574 | |
public synchronized String getShowDocType() { |
575 | 0 | return showDocType; |
576 | |
} |
577 | |
|
578 | |
public synchronized void setShowDocType(String showDocType) { |
579 | 0 | this.showDocType = showDocType; |
580 | 0 | } |
581 | |
|
582 | |
public synchronized String getShowInitiator() { |
583 | 0 | return showInitiator; |
584 | |
} |
585 | |
|
586 | |
public synchronized void setShowInitiator(String showInitiator) { |
587 | 0 | this.showInitiator = showInitiator; |
588 | 0 | } |
589 | |
|
590 | |
public synchronized String getShowDocTitle() { |
591 | 0 | return showDocTitle; |
592 | |
} |
593 | |
|
594 | |
public synchronized void setShowDocTitle(String showDocTitle) { |
595 | 0 | this.showDocTitle = showDocTitle; |
596 | 0 | } |
597 | |
|
598 | |
public synchronized String getShowWorkgroupRequest() { |
599 | 0 | return showWorkgroupRequest; |
600 | |
} |
601 | |
|
602 | |
public synchronized void setShowWorkgroupRequest(String showWorkgroupRequest) { |
603 | 0 | this.showWorkgroupRequest = showWorkgroupRequest; |
604 | 0 | } |
605 | |
|
606 | |
public synchronized String getShowDelegator() { |
607 | 0 | return showDelegator; |
608 | |
} |
609 | |
|
610 | |
public synchronized void setShowDelegator(String showDelegator) { |
611 | 0 | this.showDelegator = showDelegator; |
612 | 0 | } |
613 | |
|
614 | |
public synchronized String getShowClearFyi() { |
615 | 0 | return showClearFyi; |
616 | |
} |
617 | |
|
618 | |
public synchronized void setShowClearFyi(String showClearFyi) { |
619 | 0 | this.showClearFyi = showClearFyi; |
620 | 0 | } |
621 | |
|
622 | |
public synchronized String getPageSize() { |
623 | 0 | return pageSize; |
624 | |
} |
625 | |
|
626 | |
public synchronized void setPageSize(String pageSize) { |
627 | 0 | this.pageSize = pageSize; |
628 | 0 | } |
629 | |
|
630 | |
public synchronized String getRefreshRate() { |
631 | 0 | return refreshRate; |
632 | |
} |
633 | |
|
634 | |
public synchronized void setRefreshRate(String refreshRate) { |
635 | 0 | this.refreshRate = refreshRate; |
636 | 0 | } |
637 | |
|
638 | |
public synchronized String getColorSaved() { |
639 | 0 | return colorSaved; |
640 | |
} |
641 | |
|
642 | |
public synchronized void setColorSaved(String colorSaved) { |
643 | 0 | this.colorSaved = colorSaved; |
644 | 0 | } |
645 | |
|
646 | |
public synchronized String getColorInitiated() { |
647 | 0 | return colorInitiated; |
648 | |
} |
649 | |
|
650 | |
public synchronized void setColorInitiated(String colorInitiated) { |
651 | 0 | this.colorInitiated = colorInitiated; |
652 | 0 | } |
653 | |
|
654 | |
public synchronized String getColorDisapproved() { |
655 | 0 | return colorDissaproved; |
656 | |
} |
657 | |
|
658 | |
public synchronized void setColorDissaproved(String colorDissaproved) { |
659 | 0 | this.colorDissaproved = colorDissaproved; |
660 | 0 | } |
661 | |
|
662 | |
public synchronized String getColorEnroute() { |
663 | 0 | return colorEnroute; |
664 | |
} |
665 | |
|
666 | |
public synchronized void setColorEnroute(String colorEnroute) { |
667 | 0 | this.colorEnroute = colorEnroute; |
668 | 0 | } |
669 | |
|
670 | |
public synchronized String getColorApproved() { |
671 | 0 | return colorApproved; |
672 | |
} |
673 | |
|
674 | |
public synchronized void setColorApproved(String colorApproved) { |
675 | 0 | this.colorApproved = colorApproved; |
676 | 0 | } |
677 | |
|
678 | |
public synchronized String getColorFinal() { |
679 | 0 | return colorFinal; |
680 | |
} |
681 | |
|
682 | |
public synchronized void setColorFinal(String colorFinal) { |
683 | 0 | this.colorFinal = colorFinal; |
684 | 0 | } |
685 | |
|
686 | |
public synchronized String getColorDisapproveCancel() { |
687 | 0 | return colorDissapproveCancel; |
688 | |
} |
689 | |
|
690 | |
public synchronized void setColorDissapproveCancel(String colorDissapproveCancel) { |
691 | 0 | this.colorDissapproveCancel = colorDissapproveCancel; |
692 | 0 | } |
693 | |
|
694 | |
public synchronized String getColorProcessed() { |
695 | 0 | return colorProccessed; |
696 | |
} |
697 | |
|
698 | |
public synchronized void setColorProccessed(String colorProccessed) { |
699 | 0 | this.colorProccessed = colorProccessed; |
700 | 0 | } |
701 | |
|
702 | |
public synchronized String getColorException() { |
703 | 0 | return colorException; |
704 | |
} |
705 | |
|
706 | |
public synchronized void setColorException(String colorException) { |
707 | 0 | this.colorException = colorException; |
708 | 0 | } |
709 | |
|
710 | |
public synchronized String getColorCanceled() { |
711 | 0 | return colorCanceled; |
712 | |
} |
713 | |
|
714 | |
public synchronized void setColorCanceled(String colorCanceled) { |
715 | 0 | this.colorCanceled = colorCanceled; |
716 | 0 | } |
717 | |
|
718 | |
public synchronized String getDelegatorFilter() { |
719 | 0 | return delegatorFilter; |
720 | |
} |
721 | |
|
722 | |
public synchronized void setDelegatorFilter(String delegatorFilter) { |
723 | 0 | this.delegatorFilter = delegatorFilter; |
724 | 0 | } |
725 | |
|
726 | |
public synchronized String getUseOutbox() { |
727 | 0 | return useOutbox; |
728 | |
} |
729 | |
|
730 | |
public synchronized void setUseOutbox(String useOutbox) { |
731 | 0 | this.useOutbox = useOutbox; |
732 | 0 | } |
733 | |
|
734 | |
public synchronized String getShowDateApproved() { |
735 | 0 | return showDateApproved; |
736 | |
} |
737 | |
|
738 | |
public synchronized void setShowDateApproved(String showDateApproved) { |
739 | 0 | this.showDateApproved = showDateApproved; |
740 | 0 | } |
741 | |
|
742 | |
public synchronized String getShowCurrentNode() { |
743 | 0 | return showCurrentNode; |
744 | |
} |
745 | |
|
746 | |
public synchronized void setShowCurrentNode(String showCurrentNode) { |
747 | 0 | this.showCurrentNode = showCurrentNode; |
748 | 0 | } |
749 | |
|
750 | |
public synchronized String getPrimaryDelegateFilter() { |
751 | 0 | return primaryDelegateFilter; |
752 | |
} |
753 | |
|
754 | |
public synchronized void setPrimaryDelegateFilter(String primaryDelegateFilter) { |
755 | 0 | this.primaryDelegateFilter = primaryDelegateFilter; |
756 | 0 | } |
757 | |
|
758 | |
public synchronized String getNotifyAcknowledge() { |
759 | 0 | return this.notifyAcknowledge; |
760 | |
} |
761 | |
|
762 | |
public synchronized void setNotifyAcknowledge(String notifyAcknowledge) { |
763 | 0 | this.notifyAcknowledge = notifyAcknowledge; |
764 | 0 | } |
765 | |
|
766 | |
public synchronized String getNotifyApprove() { |
767 | 0 | return this.notifyApprove; |
768 | |
} |
769 | |
|
770 | |
public synchronized void setNotifyApprove(String notifyApprove) { |
771 | 0 | this.notifyApprove = notifyApprove; |
772 | 0 | } |
773 | |
|
774 | |
public synchronized String getNotifyComplete() { |
775 | 0 | return this.notifyComplete; |
776 | |
} |
777 | |
|
778 | |
public synchronized void setNotifyComplete(String notifyComplete) { |
779 | 0 | this.notifyComplete = notifyComplete; |
780 | 0 | } |
781 | |
|
782 | |
public synchronized String getNotifyFYI() { |
783 | 0 | return this.notifyFYI; |
784 | |
} |
785 | |
|
786 | |
public synchronized void setNotifyFYI(String notifyFYI) { |
787 | 0 | this.notifyFYI = notifyFYI; |
788 | 0 | } |
789 | |
} |
790 | |
|
791 | 0 | static class Constants { |
792 | |
static final String ROOT_ELEMENT_NAME = "preferences"; |
793 | |
static final String TYPE_NAME = "PreferencesType"; |
794 | |
static final String PREFERENCES_YES_VAL = "yes"; |
795 | |
} |
796 | |
|
797 | |
|
798 | |
|
799 | |
|
800 | |
|
801 | 0 | static class Elements { |
802 | |
|
803 | |
static final String REQUIRES_SAVE = "requiresSave"; |
804 | |
static final String EMAIL_NOTIFICATION = "emailNotification"; |
805 | |
static final String NOTIFY_PRIMARY_DELEGATION = "notifyPrimaryDelegation"; |
806 | |
static final String NOTIFY_SECONDARY_DELEGATION = "notifySecondaryDelegation"; |
807 | |
static final String OPEN_NEW_WINDOW = "openNewWindow"; |
808 | |
static final String SHOW_ACTION_REQUESTED = "showActionRequested"; |
809 | |
static final String SHOW_DATE_CREATED = "showDateCreated"; |
810 | |
static final String SHOW_DOCUMENT_STATUS = "showDocumentStatus"; |
811 | |
static final String SHOW_APP_DOC_STATUS = "showAppDocStatus"; |
812 | |
static final String SHOW_DOC_TYPE = "showDocType"; |
813 | |
static final String SHOW_INITIATOR = "showInitiator"; |
814 | |
static final String SHOW_DOC_TITLE = "showDocTitle"; |
815 | |
static final String SHOW_WORKGROUP_REQUEST = "showWorkgroupRequest"; |
816 | |
static final String SHOW_DELEGATOR = "showDelegator"; |
817 | |
static final String SHOW_CLEAR_FYI = "showClearFyi"; |
818 | |
static final String PAGE_SIZE = "pageSize"; |
819 | |
static final String REFRESH_RATE = "refreshRate"; |
820 | |
static final String COLOR_SAVED = "colorSaved"; |
821 | |
static final String COLOR_INITIATED = "colorInitiated"; |
822 | |
static final String COLOR_DISAPPROVED = "colorDisapproved"; |
823 | |
static final String COLOR_ENROUTE = "colorEnroute"; |
824 | |
static final String COLOR_APPROVED = "colorApproved"; |
825 | |
static final String COLOR_FINAL = "colorFinal"; |
826 | |
static final String COLOR_DISAPPROVE_CANCEL = "colorDisapproveCancel"; |
827 | |
static final String COLOR_PROCESSED = "colorProcessed"; |
828 | |
static final String COLOR_EXCEPTION = "colorException"; |
829 | |
static final String COLOR_CANCELED = "colorCanceled"; |
830 | |
static final String DELEGATOR_FILTER = "delegatorFilter"; |
831 | |
static final String USE_OUTBOX = "useOutbox"; |
832 | |
static final String SHOW_DATE_APPROVED = "showDateApproved"; |
833 | |
static final String SHOW_CURRENT_NODE = "showCurrentNode"; |
834 | |
static final String PRIMARY_DELEGATE_FILTER = "primaryDelegateFilter"; |
835 | |
static final String NOTIFY_ACKNOWLEDGE = "notifyAcknowledge"; |
836 | |
static final String NOTIFY_APPROVE = "notifyApprove"; |
837 | |
static final String NOTIFY_COMPLETE = "notifyCompelte"; |
838 | |
static final String NOTIFY_FYI = "notifyFYI"; |
839 | |
} |
840 | |
|
841 | 0 | public static class KEYS { |
842 | |
public static final String COLOR_DISAPPROVED = "DOCUMENT_STATUS_COLOR_D"; |
843 | |
public static final String COLOR_DISAPPROVE_CANCEL = "DOCUMENT_STATUS_COLOR_C"; |
844 | |
public static final String COLOR_APPROVED = "DOCUMENT_STATUS_COLOR_A"; |
845 | |
public static final String COLOR_CANCELED = "DOCUMENT_STATUS_COLOR_X"; |
846 | |
public static final String COLOR_SAVED = "DOCUMENT_STATUS_COLOR_S"; |
847 | |
public static final String COLOR_ENROUTE = "DOCUMENT_STATUS_COLOR_R"; |
848 | |
public static final String COLOR_PROCESSED = "DOCUMENT_STATUS_COLOR_P"; |
849 | |
public static final String COLOR_INITIATED = "DOCUMENT_STATUS_COLOR_I"; |
850 | |
public static final String COLOR_FINAL = "DOCUMENT_STATUS_COLOR_F"; |
851 | |
public static final String COLOR_EXCEPTION = "DOCUMENT_STATUS_COLOR_E"; |
852 | |
public static final String REFRESH_RATE = "REFRESH_RATE"; |
853 | |
public static final String OPEN_NEW_WINDOW = "OPEN_ITEMS_NEW_WINDOW"; |
854 | |
public static final String SHOW_DOC_TYPE = "DOC_TYPE_COL_SHOW_NEW"; |
855 | |
public static final String SHOW_DOC_TITLE = "TITLE_COL_SHOW_NEW"; |
856 | |
public static final String SHOW_ACTION_REQUESTED = "ACTION_REQUESTED_COL_SHOW_NEW"; |
857 | |
public static final String SHOW_INITIATOR = "INITIATOR_COL_SHOW_NEW"; |
858 | |
public static final String SHOW_DELEGATOR = "DELEGATOR_COL_SHOW_NEW"; |
859 | |
public static final String SHOW_DATE_CREATED = "DATE_CREATED_COL_SHOW_NEW"; |
860 | |
public static final String SHOW_DOCUMENT_STATUS = "DOCUMENT_STATUS_COL_SHOW_NEW"; |
861 | |
public static final String SHOW_APP_DOC_STATUS = "APP_DOC_STATUS_COL_SHOW_NEW"; |
862 | |
public static final String SHOW_GROUP_REQUEST = "WORKGROUP_REQUEST_COL_SHOW_NEW"; |
863 | |
public static final String SHOW_CLEAR_FYI = "CLEAR_FYI_COL_SHOW_NEW"; |
864 | |
public static final String PAGE_SIZE = "ACTION_LIST_SIZE_NEW"; |
865 | |
public static final String EMAIL_NOTIFICATION = "EMAIL_NOTIFICATION"; |
866 | |
public static final String NOTIFY_PRIMARY_DELEGATION = "EMAIL_NOTIFY_PRIMARY"; |
867 | |
public static final String NOTIFY_SECONDARY_DELEGATION = "EMAIL_NOTIFY_SECONDARY"; |
868 | |
public static final String DEFAULT_COLOR = "white"; |
869 | |
public static final String DEFAULT_ACTION_LIST_SIZE = "10"; |
870 | |
public static final String DEFAULT_REFRESH_RATE = "15"; |
871 | |
public static final String ERR_KEY_REFRESH_RATE_WHOLE_NUM = "preferences.refreshRate"; |
872 | |
public static final String ERR_KEY_ACTION_LIST_PAGE_SIZE_WHOLE_NUM = "preferences.pageSize"; |
873 | |
public static final String DELEGATOR_FILTER = "DELEGATOR_FILTER"; |
874 | |
public static final String PRIMARY_DELEGATE_FILTER = "PRIMARY_DELEGATE_FILTER"; |
875 | |
public static final String USE_OUT_BOX = "USE_OUT_BOX"; |
876 | |
public static final String SHOW_DATE_APPROVED = "LAST_APPROVED_DATE_COL_SHOW_NEW"; |
877 | |
public static final String SHOW_CURRENT_NODE = "CURRENT_NODE_COL_SHOW_NEW"; |
878 | |
public static final String NOTIFY_ACKNOWLEDGE = "NOTIFY_ACKNOWLEDGE"; |
879 | |
public static final String NOTIFY_APPROVE = "NOTIFY_APPROVE"; |
880 | |
public static final String NOTIFY_COMPLETE = "NOTIFY_COMPLETE"; |
881 | |
public static final String NOTIFY_FYI = "NOTIFY_FYI"; |
882 | |
} |
883 | |
|
884 | 0 | public static class Cache { |
885 | |
public static final String NAME = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0 + "/" + Preferences.Constants.TYPE_NAME; |
886 | |
} |
887 | |
|
888 | |
} |