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
19
20
21
22
23
24
25 public interface PreferencesContract {
26
27 boolean isRequiresSave();
28
29 String getEmailNotification();
30
31 String getNotifyPrimaryDelegation();
32
33 String getNotifySecondaryDelegation();
34
35 String getOpenNewWindow();
36
37 String getShowActionRequested();
38
39 String getShowDateCreated();
40
41 String getShowDocumentStatus();
42
43 String getShowAppDocStatus();
44
45 String getShowDocType();
46
47 String getShowInitiator();
48
49 String getShowDocTitle();
50
51 String getShowWorkgroupRequest();
52
53 String getShowDelegator();
54
55 String getShowClearFyi();
56
57 String getPageSize();
58
59 String getRefreshRate();
60
61 String getColorSaved();
62
63 String getColorInitiated();
64
65 String getColorDisapproved();
66
67 String getColorEnroute();
68
69 String getColorApproved();
70
71 String getColorFinal();
72
73 String getColorDisapproveCancel();
74
75 String getColorProcessed();
76
77 String getColorException();
78
79 String getColorCanceled();
80
81 String getDelegatorFilter();
82
83 String getUseOutbox();
84
85 String getShowDateApproved();
86
87 String getShowCurrentNode();
88
89 String getPrimaryDelegateFilter();
90
91 String getNotifyAcknowledge();
92
93 String getNotifyApprove();
94
95 String getNotifyComplete();
96
97 String getNotifyFYI();
98
99 }