Uses of Class
org.opencms.scheduler.CmsScheduledJobInfo
-
Packages that use CmsScheduledJobInfo Package Description org.opencms.configuration Reads and writes the XML based OpenCms configuration files.org.opencms.scheduler The OpenCms scheduler provides a facility to run jobs in a regular schedule, much like the "cron" faciltiy in UNIX systems.org.opencms.ui.apps.scheduler The scheduled jobs manager app classes. -
-
Uses of CmsScheduledJobInfo in org.opencms.configuration
Methods in org.opencms.configuration with parameters of type CmsScheduledJobInfo Modifier and Type Method Description void
CmsSchedulerConfiguration. addJobFromConfiguration(CmsScheduledJobInfo jobInfo)
Adds a new job description for the scheduler. -
Uses of CmsScheduledJobInfo in org.opencms.scheduler
Methods in org.opencms.scheduler that return CmsScheduledJobInfo Modifier and Type Method Description CmsScheduledJobInfo
CmsScheduledJobInfo. clone()
Creates a clone of this scheduled job.CmsScheduledJobInfo
CmsScheduleManager. getJob(java.lang.String id)
Returns the currently scheduled job description identified by the given id.CmsScheduledJobInfo
CmsScheduleManager. unscheduleJob(CmsObject cms, java.lang.String jobId)
Removes a currently scheduled job from the scheduler.Methods in org.opencms.scheduler that return types with arguments of type CmsScheduledJobInfo Modifier and Type Method Description java.util.List<CmsScheduledJobInfo>
CmsScheduleManager. getJobs()
Returns the currently scheduled job descriptions in an unmodifiable list.Methods in org.opencms.scheduler with parameters of type CmsScheduledJobInfo Modifier and Type Method Description protected void
CmsScheduleManager. executeJob(CmsScheduledJobInfo jobInfo)
Executes the given job.void
CmsScheduleManager. scheduleJob(CmsObject cms, CmsScheduledJobInfo jobInfo)
Adds a new job to the scheduler.Constructor parameters in org.opencms.scheduler with type arguments of type CmsScheduledJobInfo Constructor Description CmsScheduleManager(java.util.List<CmsScheduledJobInfo> configuredJobs)
Used by the configuration to create a new Scheduler during system startup. -
Uses of CmsScheduledJobInfo in org.opencms.ui.apps.scheduler
Fields in org.opencms.ui.apps.scheduler declared as CmsScheduledJobInfo Modifier and Type Field Description protected CmsScheduledJobInfo
CmsJobBean. m_jobInfo
The wrapped scheduled job info.Methods in org.opencms.ui.apps.scheduler that return CmsScheduledJobInfo Modifier and Type Method Description CmsScheduledJobInfo
CmsJobManagerApp. getElement(java.lang.String elementId)
CmsScheduledJobInfo
CmsJobBean. getJob()
Gets the scheduled job.Methods in org.opencms.ui.apps.scheduler that return types with arguments of type CmsScheduledJobInfo Modifier and Type Method Description java.util.List<CmsScheduledJobInfo>
CmsJobManagerApp. getAllElements()
Methods in org.opencms.ui.apps.scheduler with parameters of type CmsScheduledJobInfo Modifier and Type Method Description void
CmsJobManagerApp. createElement(CmsScheduledJobInfo element)
void
CmsJobEditView. loadFromBean(CmsScheduledJobInfo info)
Initializes the form fields with values from the given job bean.void
CmsJobManagerApp. runJob(CmsScheduledJobInfo job)
Executes the given schedule job.void
CmsJobManagerApp. writeElement(CmsScheduledJobInfo jobInfo)
Constructors in org.opencms.ui.apps.scheduler with parameters of type CmsScheduledJobInfo Constructor Description CmsJobBean(CmsScheduledJobInfo info)
Creates a new instance.CmsJobEditView(CmsJobManagerApp manager, CmsScheduledJobInfo job)
Creates a new instance.
-