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.hr.time.principal.dao;
17  
18  import java.util.Date;
19  import java.util.List;
20  
21  import org.kuali.hr.time.principal.PrincipalHRAttributes;
22  
23  public interface PrincipalHRAttributesDao {
24  	public void saveOrUpdate(PrincipalHRAttributes principalCalendar);
25  
26  	public void saveOrUpdate(List<PrincipalHRAttributes> lstPrincipalCalendar);
27  
28  	public PrincipalHRAttributes getPrincipalCalendar(String principalId, Date asOfDate);
29  	
30  	public List<PrincipalHRAttributes> getActiveEmployeesForPayCalendar(String payCalendarName, Date asOfDate);
31  
32  	public List<PrincipalHRAttributes> getActiveEmployeesForLeaveCalendar(String leaveCalendarName, Date asOfDate);
33  	
34  	public List<String> getActiveEmployeesIdForLeaveCalendarAndIdList(String leaveCalendarName, List<String> pidList, Date asOfDate);
35  	
36      public List<String> getActiveEmployeesIdForTimeCalendarAndIdList(String timeCalendarName, List<String> pidList, Date asOfDate);
37  
38  	/**
39  	 * KPME-1250 Kagata
40  	 * Get a list of active employees based on leave plan and as of a particular date 
41  	 * @param leavePlan
42  	 * @param asOfDate
43  	 * @return
44  	 */
45  	public List<PrincipalHRAttributes> getActiveEmployeesForLeavePlan(String leavePlan, Date asOfDate);
46  	
47  // this method is not needed anymore since we changed the primary key of
48  //	PrincipalHRAttributes table from principalId to hrPrincipalAttributeId
49  //	use getPrincipalCalendar(String principalId, Date asOfDate) instead
50  //	public PrincipalHRAttributes getPrincipalHRAttributes(String principalId);
51  	
52  	public PrincipalHRAttributes getInactivePrincipalHRAttributes(String principalId, Date asOfDate);
53  	
54  	public PrincipalHRAttributes getPrincipalHRAttributes(String hrPrincipalAttributeId);
55  	
56  	public List<PrincipalHRAttributes> getAllActivePrincipalHrAttributesForPrincipalId(String principalId, Date asOfDate);
57  	
58  	public List<PrincipalHRAttributes> getAllInActivePrincipalHrAttributesForPrincipalId(String principalId, Date asOfDate);
59  	
60  	public PrincipalHRAttributes getMaxTimeStampPrincipalHRAttributes(String principalId);
61  	
62  	public List<PrincipalHRAttributes> getActivePrincipalHrAttributesForRange(String principalId, Date startDate, Date endDate);
63  	 
64  	public List<PrincipalHRAttributes> getInactivePrincipalHRAttributesForRange(String principalId, Date startDate, Date endDate);
65  
66      public List<String> getUniqueLeavePayGroupsForPrincipalIds(List<String> principalIds);
67      
68      public List<PrincipalHRAttributes> getPrincipalHrAtributes(String principalId, String leavePlan, java.sql.Date fromEffdt, java.sql.Date toEffdt, String active, String showHistory);
69      
70      public List<String> getUniqueTimePayGroups();
71      
72  }