Package org.apache.turbine.services
Interface Initable
-
- All Known Subinterfaces:
AssemblerBrokerService,AvalonComponentService,JsonRpcService,JspService,NamingService,PullService,RunDataService,ScheduleService,SecurityService,Service,ServletService,SessionService,TemplateService,UIService,UniqueIdService,URLMapperService,VelocityService
- All Known Implementing Classes:
AbstractSchedulerService,BaseInitable,BaseService,BaseTemplateEngineService,BaseUnicastRemoteService,DefaultSecurityService,QuartzSchedulerService,TorqueSchedulerService,TurbineAssemblerBrokerService,TurbineBaseService,TurbineJsonRpcService,TurbineJspService,TurbineNamingService,TurbineNonPersistentSchedulerService,TurbinePullService,TurbineRunDataService,TurbineServletService,TurbineSessionService,TurbineTemplateService,TurbineUIService,TurbineUniqueIdService,TurbineURLMapperService,TurbineVelocityService,TurbineYaafiComponentService
public interface Initable
Classes that implement this interface need initialization before they can work. These classes rely also on anInitableBrokerthat ensures that there is only one instance of the class in the system, and handles dependencies betweenInitables.- Version:
- $Id$
- Author:
- Kevin Burton, Rafal Krzewski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetInit()Returns initialization status of an Initable.voidinit()Performs late initialization of an Initable.voidinit(Object data)Performs early initialization of an Initable During the startup of the system, different objects may be passed to your class using this method.voidsetInitableBroker(InitableBroker broker)Provides an Initable with a reference to the InitableBroker that instantiated this object, so that it can access other Initables.voidshutdown()Returns anInitableto an uninitialized state.
-
-
-
Method Detail
-
setInitableBroker
void setInitableBroker(InitableBroker broker)
Provides an Initable with a reference to the InitableBroker that instantiated this object, so that it can access other Initables.- Parameters:
broker- The InitableBroker that instantiated this object.
-
init
void init(Object data) throws InitializationException
Performs early initialization of an Initable During the startup of the system, different objects may be passed to your class using this method. It should ignore any objects that it doesn't need or understand. After the class changes its internal state so that getInit() returns true, this method will be called no more, and late initialization will not be performed. If your class relies on early initialization, and the object it expects was not received, you can use late initialization to throw an exception and complain.- Parameters:
data- An Object to use for initialization activities.- Throws:
InitializationException- if initialization of this class was not successful.
-
init
void init() throws InitializationException
Performs late initialization of an Initable. When your class is being requested from an InitableBroker, it will call getInit(), and if it returns false, this method will be invoked.- Throws:
InitializationException- if initialization of this class was not successful.
-
shutdown
void shutdown()
Returns anInitableto an uninitialized state.This method must release all resources allocated by the
Initableimplementation, and resetting its internal state. You may chose to implement this operation or not. If you support this operation, getInit() should return false after successful shutdown of the service.
-
getInit
boolean getInit()
Returns initialization status of an Initable.- Returns:
- Initialization status of an Initable.
-
-