View Javadoc
1   /**
2    * Copyright 2004-2014 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.common;
17  
18  import java.util.ArrayList;
19  import java.util.HashMap;
20  import java.util.LinkedList;
21  import java.util.List;
22  import java.util.Map;
23  
24  import org.kuali.kpme.core.web.KPMEForm;
25  
26  public abstract class ApprovalForm extends KPMEForm {
27  
28  	private static final long serialVersionUID = -8943916755511889801L;
29  	
30  	private String selectedPayCalendarGroup;
31      private String selectedDept;
32      private String selectedWorkArea;
33    
34      private List<String> payCalendarGroups = new LinkedList<String>();
35      private List<String> departments = new ArrayList<String>();
36      private Map<Long,String> workAreaDescr = new HashMap<Long,String>();
37      
38  	/**
39       * Used for ajax dynamic row updating
40       */
41      private String outputString;
42  
43      public String getSelectedPayCalendarGroup() {
44          return selectedPayCalendarGroup;
45      }
46  
47      public void setSelectedPayCalendarGroup(String selectedPayCalendarGroup) {
48          this.selectedPayCalendarGroup = selectedPayCalendarGroup;
49      }
50  
51      public String getSelectedDept() {
52          return selectedDept;
53      }
54  
55      public void setSelectedDept(String selectedDept) {
56          this.selectedDept = selectedDept;
57      }
58      
59      public String getSelectedWorkArea() {
60          return selectedWorkArea;
61      }
62  
63      public void setSelectedWorkArea(String selectedWorkArea) {
64          this.selectedWorkArea = selectedWorkArea;
65      }
66      
67      public List<String> getPayCalendarGroups() {
68          return payCalendarGroups;
69      }
70  
71      public void setPayCalendarGroups(List<String> payCalendarGroups) {
72          this.payCalendarGroups = payCalendarGroups;
73      }
74  
75      public List<String> getDepartments() {
76          return departments;
77      }
78  
79      public void setDepartments(List<String> departments) {
80          this.departments = departments;
81      }
82  
83  	public Map<Long,String> getWorkAreaDescr() {
84  		return workAreaDescr;
85  	}
86  
87  	public void setWorkAreaDescr(Map<Long,String> workAreaDescr) {
88  		this.workAreaDescr = workAreaDescr;
89  	}
90  	
91      public String getOutputString() {
92          return outputString;
93      }
94  
95      public void setOutputString(String outputString) {
96          this.outputString = outputString;
97      }
98  
99  }