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.batch.service;
17  
18  import java.util.Date;
19  
20  import org.kuali.hr.lm.leaveplan.LeavePlan;
21  import org.kuali.hr.time.calendar.CalendarEntries;
22  import org.quartz.SchedulerException;
23  
24  public interface BatchJobService {
25      
26      void scheduleInitiateJobs(CalendarEntries calendarEntry) throws SchedulerException;
27      
28      void scheduleInitiateJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
29      
30      void scheduleEndReportingPeriodJobs(CalendarEntries calendarEntry) throws SchedulerException;
31      
32      void scheduleEndReportingPeriodJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
33      
34      void scheduleEndPayPeriodJobs(CalendarEntries calendarEntry) throws SchedulerException;
35      
36      void scheduleEndPayPeriodJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
37  
38      void scheduleEmployeeApprovalJobs(CalendarEntries calendarEntry) throws SchedulerException;
39      
40      void scheduleEmployeeApprovalJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
41      
42      void scheduleMissedPunchApprovalJobs(CalendarEntries calendarEntry) throws SchedulerException;
43      
44      void scheduleMissedPunchApprovalJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
45  
46      void scheduleSupervisorApprovalJobs(CalendarEntries calendarEntry) throws SchedulerException;
47      
48      void scheduleSupervisorApprovalJobs(CalendarEntries calendarEntry, Date scheduleDate) throws SchedulerException;
49      
50      void scheduleLeaveCarryOverJobs(LeavePlan leavePlan) throws SchedulerException;
51      
52      void scheduleLeaveCarryOverJobs(LeavePlan leavePlan, Date scheduleDate) throws SchedulerException;
53      
54  }