Revision 5042
Added by daigle about 15 years ago
src/edu/ucsb/nceas/metacat/scheduler/BaseScheduler.java | ||
---|---|---|
39 | 39 |
Hashtable<String, String[]> params, String username, String[] groups) throws MetacatSchedulerException; |
40 | 40 |
|
41 | 41 |
// Unschedule a job in the scheduler service. |
42 |
public abstract void unScheduleJob(HttpServletRequest request, HttpServletResponse response,
|
|
42 |
public abstract void unscheduleJob(HttpServletRequest request, HttpServletResponse response,
|
|
43 | 43 |
Hashtable<String, String[]> params, String username, String[] groups) throws MetacatSchedulerException; |
44 | 44 |
|
45 |
// Unschedule a job in the scheduler service. |
|
46 |
public abstract void rescheduleJob(HttpServletRequest request, HttpServletResponse response, |
|
47 |
Hashtable<String, String[]> params, String username, String[] groups) throws MetacatSchedulerException; |
|
48 |
|
|
45 | 49 |
// Delete a job in the scheduler service. |
46 | 50 |
public abstract void deleteJob(HttpServletRequest request, HttpServletResponse response, |
47 | 51 |
Hashtable<String, String[]> params, String username, String[] groups) throws MetacatSchedulerException; |
Also available in: Unified diff
Add unshedulejob to base class