View Javadoc
1   /*
2    * Copyright 2006 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.ole.fp.document.web.struts;
17  
18  import org.kuali.rice.kns.web.struts.form.KualiForm;
19  
20  /**
21   * This class is the Struts form for the Cash Management Status page.
22   */
23  public class CashManagementStatusForm extends KualiForm {
24      String verificationUnit;
25      String controllingDocumentId;
26      String currentDrawerStatus;
27      String desiredDrawerStatus;
28  
29  
30      /**
31       * Constructs a CashManagementStatusForm.
32       */
33      public CashManagementStatusForm() {
34          super();
35      }
36  
37  
38      /**
39       * @return current value of controllingDocumentId.
40       */
41      public String getControllingDocumentId() {
42          return controllingDocumentId;
43      }
44  
45      /**
46       * Sets the controllingDocumentId attribute value.
47       * 
48       * @param controllingDocumentId The controllingDocumentId to set.
49       */
50      public void setControllingDocumentId(String controllingDocumentId) {
51          this.controllingDocumentId = controllingDocumentId;
52      }
53  
54  
55      /**
56       * @return current value of currentDrawerStatus.
57       */
58      public String getCurrentDrawerStatus() {
59          return currentDrawerStatus;
60      }
61  
62      /**
63       * Sets the currentDrawerStatus attribute value.
64       * 
65       * @param currentDrawerStatus The currentDrawerStatus to set.
66       */
67      public void setCurrentDrawerStatus(String currentDrawerStatus) {
68          this.currentDrawerStatus = currentDrawerStatus;
69      }
70  
71  
72      /**
73       * @return current value of desiredDrawerStatus.
74       */
75      public String getDesiredDrawerStatus() {
76          return desiredDrawerStatus;
77      }
78  
79      /**
80       * Sets the desiredDrawerStatus attribute value.
81       * 
82       * @param desiredDrawerStatus The desiredDrawerStatus to set.
83       */
84      public void setDesiredDrawerStatus(String desiredDrawerStatus) {
85          this.desiredDrawerStatus = desiredDrawerStatus;
86      }
87  
88  
89      /**
90       * @return current value of verificationUnit.
91       */
92      public String getVerificationUnit() {
93          return verificationUnit;
94      }
95  
96      /**
97       * Sets the verificationUnit attribute value.
98       * 
99       * @param verificationUnit The verificationUnit to set.
100      */
101     public void setVerificationUnit(String verificationUnit) {
102         this.verificationUnit = verificationUnit;
103     }
104 }