public interface OrgModelInitialiser
OrgModelInitialiser provides the means to initialize the
OrgModel during the startup of the OrgModelManager. All operations
are performed via a reference to the OrgModelManager that is to be set when
constructing the initializer. OrgModelManager is one of the first services to be started,
be aware that almost no other services will be available at the time
run() is called. This especially makes things like checking
templates and process instances impossible, since the process manager
is not booted yet.| Modifier and Type | Method and Description |
|---|---|
boolean |
initialBootOnly()
Defines whether or not this initializer should only be respected during
the initial boot of the
OrgModelManager. |
void |
run()
Calls the initialization for the OrgModel.
|
void run() throws java.lang.Exception
java.lang.Exception - if an error occurs manipulating the OrgModelboolean initialBootOnly()
OrgModelManager.true, if the initializer should only be called
during the first boot, false, if it should be called on every
boot.