org.apache.turbine.services
Interface Initable
- All Known Subinterfaces:
- AssemblerBrokerService, AvalonComponentService, ComponentService, CryptoService, FactoryService, GlobalCacheService, JspService, LocalizationService, MimeTypeService, NamingService, PoolService, PullService, RunDataService, ScheduleService, SecurityService, Service, ServletService, SessionService, TemplateService, UniqueIdService, UploadService, VelocityService, XmlRpcService, XSLTService
- All Known Implementing Classes:
- BaseInitable, BaseSecurityService, BaseService, BaseUnicastRemoteService, BaseUploadService, TurbineAssemblerBrokerService, TurbineAvalonComponentService, TurbineComponentService, TurbineCryptoService, TurbineFactoryService, TurbineGlobalCacheService, TurbineJspService, TurbineLocalizationService, TurbineMimeTypeService, TurbineNamingService, TurbinePoolService, TurbinePullService, TurbineRunDataService, TurbineSchedulerService, TurbineServletService, TurbineSessionService, TurbineTemplateService, TurbineUniqueIdService, TurbineUploadService, TurbineVelocityService, TurbineXmlRpcService, TurbineXSLTService
- public interface Initable
Classes that implement this interface need initialization before
they can work.
These classes rely also on an InitableBroker
that
ensures that there is only one instance of the class in the system,
and handles dependencies between Initables
.
- Version:
- $Id: Initable.java 264148 2005-08-29 14:21:04Z henning $
- Author:
- Kevin Burton, Rafal Krzewski
Method Summary |
boolean |
getInit()
Returns initialization status of an Initable. |
void |
init()
Performs late initialization of an Initable. |
void |
init(java.lang.Object data)
Performs early initailization of an Initable
During the startup of the system, different objects may be
passed to your class using this method. |
void |
setInitableBroker(InitableBroker broker)
Provides an Initable with a reference to the InitableBroker
that instantiated this object, so that it can access other
Initables. |
void |
shutdown()
Returns an Initable to an uninitialized state. |
setInitableBroker
public 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
public void init(java.lang.Object data)
throws InitializationException
- Performs early initailization 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 initilaization of this
class was not successful.
init
public 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
public void shutdown()
- Returns an
Initable
to an uninitialized state.
This method must release all resources allocated by the
Initable
implementation, 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
public boolean getInit()
- Returns initialization status of an Initable.
- Returns:
- Initialization status of an Initable.
Copyright © 2000-2005 Apache Software Foundation. All Rights Reserved.