001 /** 002 * Copyright 2004-2012 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.hr.time.workarea; 017 018 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 019 020 public class WorkAreaOvertimePref extends PersistableBusinessObjectBase { 021 022 /** 023 * 024 */ 025 private static final long serialVersionUID = 1L; 026 027 private Long tkWorkAreaOvtPrefId; 028 private Long tkWorkAreaId; 029 private String payType; 030 private String overtimePreference; 031 032 public Long getTkWorkAreaId() { 033 return tkWorkAreaId; 034 } 035 036 public void setTkWorkAreaId(Long tkWorkAreaId) { 037 this.tkWorkAreaId = tkWorkAreaId; 038 } 039 040 public String getPayType() { 041 return payType; 042 } 043 044 public void setPayType(String payType) { 045 this.payType = payType; 046 } 047 048 public String getOvertimePreference() { 049 return overtimePreference; 050 } 051 052 public void setOvertimePreference(String overtimePreference) { 053 this.overtimePreference = overtimePreference; 054 } 055 056 057 public Long getTkWorkAreaOvtPrefId() { 058 return tkWorkAreaOvtPrefId; 059 } 060 061 062 public void setTkWorkAreaOvtPrefId(Long tkWorkAreaOvtPrefId) { 063 this.tkWorkAreaOvtPrefId = tkWorkAreaOvtPrefId; 064 } 065 066 }