Package org.ametys.plugins.core.schedule
Class SchedulerInit
- java.lang.Object
-
- org.ametys.plugins.core.schedule.SchedulerInit
-
- All Implemented Interfaces:
Init,Serviceable
public class SchedulerInit extends Object implements Init, Serviceable
An init class to start theScheduler
-
-
Field Summary
Fields Modifier and Type Field Description protected Scheduler_schedulerThe scheduler
-
Constructor Summary
Constructors Constructor Description SchedulerInit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinit()Method to be implemented by user Init class.voidservice(ServiceManager manager)
-
-
-
Field Detail
-
_scheduler
protected Scheduler _scheduler
The scheduler
-
-
Constructor Detail
-
SchedulerInit
public SchedulerInit()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
servicein interfaceServiceable- Throws:
ServiceException
-
init
public void init() throws Exception
Description copied from interface:InitMethod to be implemented by user Init class. Here you should manage the business part of your application init. As an Avalon component, class extending this interface have access to all Cocoon-managed components, all plugins, ...
-
-