1 package com.atlassian.refapp.scheduler.api;
2
3 import com.atlassian.scheduler.SchedulerService;
4 import com.atlassian.scheduler.config.JobId;
5 import com.atlassian.scheduler.status.JobDetails;
6
7 /**
8 * This is for testing purpose, this service can access to the local scheduler service.
9 */
10 public interface LocalAwareSchedulerService extends SchedulerService
11 {
12 JobDetails getLocalJobDetails(JobId jobId);
13 }