View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kew.api.preferences;
17  
18  /**
19   * A contract defining the method for a {@link Preferences} model object and its data transfer object equivalent.
20   *
21   * @see Preferences
22   *
23   * @author Kuali Rice Team (rice.collab@kuali.org)
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  }