View Javadoc

1   /**
2    * Copyright 2004-2013 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.kpme.tklm.time.timesheet.web;
17  
18  import org.kuali.kpme.core.web.KPMEForm;
19  
20  public class TimesheetSubmitActionForm extends KPMEForm {
21  
22      private String action;
23      private String documentId;
24      private String selectedDept;
25      private String selectedPayCalendarGroup;
26      private String selectedWorkArea;
27      private String selectedPayPeriod;
28  
29      public String getDocumentId() {
30          return documentId;
31      }
32  
33      public void setDocumentId(String documentId) {
34          this.documentId = documentId;
35      }
36  
37      public String getAction() {
38          return action;
39      }
40  
41      public void setAction(String action) {
42          this.action = action;
43      }
44  
45  	public String getSelectedDept() {
46  		return selectedDept;
47  	}
48  
49  	public void setSelectedDept(String selectedDept) {
50  		this.selectedDept = selectedDept;
51  	}
52  
53  	public String getSelectedPayCalendarGroup() {
54  		return selectedPayCalendarGroup;
55  	}
56  
57  	public void setSelectedPayCalendarGroup(String selectedPayCalendarGroup) {
58  		this.selectedPayCalendarGroup = selectedPayCalendarGroup;
59  	}
60  
61  	public String getSelectedWorkArea() {
62  		return selectedWorkArea;
63  	}
64  
65  	public void setSelectedWorkArea(String selectedWorkArea) {
66  		this.selectedWorkArea = selectedWorkArea;
67  	}
68  
69  	public String getSelectedPayPeriod() {
70  		return selectedPayPeriod;
71  	}
72  
73  	public void setSelectedPayPeriod(String selectedPayPeriod) {
74  		this.selectedPayPeriod = selectedPayPeriod;
75  	}
76      
77  }