View Javadoc

1   /**
2    * Copyright 2004-2012 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.hr.time.workarea;
17  
18  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19  
20  public class WorkAreaOvertimePref extends PersistableBusinessObjectBase {
21  
22  	/**
23  	 * 
24  	 */
25  	private static final long serialVersionUID = 1L;
26  	
27  	private Long tkWorkAreaOvtPrefId;
28  	private Long tkWorkAreaId;
29  	private String payType;
30  	private String overtimePreference;
31  
32  	public Long getTkWorkAreaId() {
33  		return tkWorkAreaId;
34  	}
35  
36  	public void setTkWorkAreaId(Long tkWorkAreaId) {
37  		this.tkWorkAreaId = tkWorkAreaId;
38  	}
39  
40  	public String getPayType() {
41  		return payType;
42  	}
43  
44  	public void setPayType(String payType) {
45  		this.payType = payType;
46  	}
47  
48  	public String getOvertimePreference() {
49  		return overtimePreference;
50  	}
51  
52  	public void setOvertimePreference(String overtimePreference) {
53  		this.overtimePreference = overtimePreference;
54  	}
55  
56  
57  	public Long getTkWorkAreaOvtPrefId() {
58  		return tkWorkAreaOvtPrefId;
59  	}
60  
61  
62  	public void setTkWorkAreaOvtPrefId(Long tkWorkAreaOvtPrefId) {
63  		this.tkWorkAreaOvtPrefId = tkWorkAreaOvtPrefId;
64  	}
65  
66  }