Uses of Interface
com.ibm.pim.job.Job

Packages that use Job
com.ibm.pim.job   
 

Uses of Job in com.ibm.pim.job
 

Subinterfaces of Job in com.ibm.pim.job
 interface CategoryImport
          Interface for Category import type
 interface Export
          Interface that represents the Export jobs
 interface Import
          Interface that represents Import jobs.
 interface ItemImport
          Interface for Item import type
 interface Report
          Interface for Report object.
 interface UserJob
          This is the super interface for all user job types
 

Methods in com.ibm.pim.job that return Job
 Job Schedule.getJob()
          Get the job to be scheduled.
 Job JobManager.getJob(java.lang.String jobDescription)
          Retrieves the detail information about the job.
 

Methods in com.ibm.pim.job that return types with arguments of type Job
 java.util.Collection<Job> JobManager.getJobs()
          Gets all jobs in the system.
 

Methods in com.ibm.pim.job with parameters of type Job
 Schedule JobManager.createSchedule(Job job)
          Runs the specified job immediately.
 Schedule JobManager.createSchedule(Job job, java.lang.String scheduleName, int intervalMinutes)
          Runs the specified job with type of Schedule.Type.MINUTE for every time of the given interval minutes based on the current time.
 Schedule JobManager.createSchedule(Job job, java.lang.String scheduleName, Schedule.Type scheduleType)
          Runs the specified job with the given schedule type, based on the current time.
 Schedule JobManager.createSchedule(Job job, java.lang.String scheduleName, Schedule.Type scheduleType, java.util.Date startTime)
          Runs the specified job with the given schedule type and running time.