001    /*
002     * Copyright 2011 The Kuali Foundation.
003     * 
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     * 
008     * http://www.opensource.org/licenses/ecl2.php
009     * 
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.kfs.fp.document.web.struts;
017    
018    import org.kuali.rice.kns.web.struts.form.KualiForm;
019    
020    /**
021     * This class is the Struts form for the Cash Management Status page.
022     */
023    public class CashManagementStatusForm extends KualiForm {
024        String verificationUnit;
025        String controllingDocumentId;
026        String currentDrawerStatus;
027        String desiredDrawerStatus;
028    
029    
030        /**
031         * Constructs a CashManagementStatusForm.
032         */
033        public CashManagementStatusForm() {
034            super();
035        }
036    
037    
038        /**
039         * @return current value of controllingDocumentId.
040         */
041        public String getControllingDocumentId() {
042            return controllingDocumentId;
043        }
044    
045        /**
046         * Sets the controllingDocumentId attribute value.
047         * 
048         * @param controllingDocumentId The controllingDocumentId to set.
049         */
050        public void setControllingDocumentId(String controllingDocumentId) {
051            this.controllingDocumentId = controllingDocumentId;
052        }
053    
054    
055        /**
056         * @return current value of currentDrawerStatus.
057         */
058        public String getCurrentDrawerStatus() {
059            return currentDrawerStatus;
060        }
061    
062        /**
063         * Sets the currentDrawerStatus attribute value.
064         * 
065         * @param currentDrawerStatus The currentDrawerStatus to set.
066         */
067        public void setCurrentDrawerStatus(String currentDrawerStatus) {
068            this.currentDrawerStatus = currentDrawerStatus;
069        }
070    
071    
072        /**
073         * @return current value of desiredDrawerStatus.
074         */
075        public String getDesiredDrawerStatus() {
076            return desiredDrawerStatus;
077        }
078    
079        /**
080         * Sets the desiredDrawerStatus attribute value.
081         * 
082         * @param desiredDrawerStatus The desiredDrawerStatus to set.
083         */
084        public void setDesiredDrawerStatus(String desiredDrawerStatus) {
085            this.desiredDrawerStatus = desiredDrawerStatus;
086        }
087    
088    
089        /**
090         * @return current value of verificationUnit.
091         */
092        public String getVerificationUnit() {
093            return verificationUnit;
094        }
095    
096        /**
097         * Sets the verificationUnit attribute value.
098         * 
099         * @param verificationUnit The verificationUnit to set.
100         */
101        public void setVerificationUnit(String verificationUnit) {
102            this.verificationUnit = verificationUnit;
103        }
104    }