public interface LifeCycle
| Modifier and Type | Method and Description |
|---|---|
boolean |
configure()
User-implemented method that configures the component, setting up user parameters and essential properties.
|
boolean |
finit()
User-implemented finalization method, called by stop().
|
Parameters |
getParameters()
Returns all configured parameters.
|
boolean |
init()
User-implemented initialization method, called by start().
|
boolean |
parameterUpdate(java.lang.String name,
java.lang.String newValue)
User-implement method called when a parameter has been updated.
|
void |
setParameters(Parameters parameters)
Framework-implemented method that sets system and user parameters.
|
boolean |
start()
Framework-implemented initialization method.
|
boolean |
stop()
Framework-implemented finalization method.
|
boolean configure()
boolean start()
boolean init()
boolean parameterUpdate(java.lang.String name,
java.lang.String newValue)
name - the namenewValue - the new valueboolean finit()
boolean stop()
void setParameters(Parameters parameters)
parameters - a Parameters object with all user and system Parameters for this objectParameters getParameters()