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.overtime.weekly.rule;
017    
018    import java.util.ArrayList;
019    import java.util.List;
020    
021    import javax.persistence.Transient;
022    
023    import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
024    
025    public class WeeklyOvertimeRuleGroup extends PersistableBusinessObjectBase{
026            /**
027             * 
028             */
029            private static final long serialVersionUID = 1L;
030            @Transient
031            private List<WeeklyOvertimeRule> lstWeeklyOvertimeRules = new ArrayList<WeeklyOvertimeRule>();
032            @Transient
033            private Long tkWeeklyOvertimeRuleGroupId = 1L;
034    
035            public List<WeeklyOvertimeRule> getLstWeeklyOvertimeRules() {
036                    return lstWeeklyOvertimeRules;
037            }
038    
039            public void setLstWeeklyOvertimeRules(
040                            List<WeeklyOvertimeRule> lstWeeklyOvertimeRules) {
041                    this.lstWeeklyOvertimeRules = lstWeeklyOvertimeRules;
042            }
043    
044            public Long getTkWeeklyOvertimeRuleGroupId() {
045                    return tkWeeklyOvertimeRuleGroupId;
046            }
047    
048            public void setTkWeeklyOvertimeRuleGroupId(Long tkWeeklyOvertimeRuleGroupId) {
049                    this.tkWeeklyOvertimeRuleGroupId = tkWeeklyOvertimeRuleGroupId;
050            }
051            
052            
053            
054    }