Uses of Class
org.pentaho.platform.api.scheduler2.Job

Packages that use Job
org.pentaho.platform.api.scheduler2   
org.pentaho.platform.scheduler2.quartz   
org.pentaho.platform.scheduler2.ws   
 

Uses of Job in org.pentaho.platform.api.scheduler2
 

Methods in org.pentaho.platform.api.scheduler2 that return Job
 Job IScheduler.createJob(String jobName, Class<? extends IAction> action, Map<String,Serializable> jobParams, JobTrigger trigger)
          Schedules a job to be run at one or more times in the future.
 Job IScheduler.createJob(String jobName, String actionId, Map<String,Serializable> jobParams, JobTrigger trigger)
           
 

Methods in org.pentaho.platform.api.scheduler2 that return types with arguments of type Job
 List<Job> IScheduler.getJobs(IJobFilter filter)
          Lists currently scheduled jobs.
 

Methods in org.pentaho.platform.api.scheduler2 with parameters of type Job
 boolean IJobFilter.accept(Job job)
          Returns true if the job should be accepted as part of the filtered results.
 

Uses of Job in org.pentaho.platform.scheduler2.quartz
 

Methods in org.pentaho.platform.scheduler2.quartz that return Job
 Job QuartzScheduler.createJob(String jobName, Class<? extends IAction> action, Map<String,Serializable> jobParams, JobTrigger trigger)
          Schedules a job to be run at one or more times in the future.
 Job QuartzScheduler.createJob(String jobName, String actionId, Map<String,Serializable> jobParams, JobTrigger trigger)
          
 

Methods in org.pentaho.platform.scheduler2.quartz that return types with arguments of type Job
 List<Job> QuartzScheduler.getJobs(IJobFilter filter)
          Lists currently scheduled jobs.
 

Uses of Job in org.pentaho.platform.scheduler2.ws
 

Methods in org.pentaho.platform.scheduler2.ws that return Job
 Job[] DefaultSchedulerService.getJobs()
          
 Job[] ISchedulerService.getJobs()
           
 Job JobAdapter.unmarshal(JobAdapter.JaxbSafeJob jaxbSafeJob)
           
 

Methods in org.pentaho.platform.scheduler2.ws with parameters of type Job
 JobAdapter.JaxbSafeJob JobAdapter.marshal(Job job)