Package org.pentaho.platform.api.engine
Interface IPentahoSystemEntryPoint
public interface IPentahoSystemEntryPoint
System Entry Point implementors get called upon entry to the system after they've been registered with the
ApplicationContext (IApplicationContext). The method is called when entries to the system call
PentahoSystem.systemEntryPoint();
The purpose of the entry point is to setup the environment as
necessary to handle relational object persistence, starting transactions, initializing objects, or whatever
needs to take place when some action starts in the server. Example invocations include action execution, agent
startup, etc.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Perform operations necessary upon entry to the system.
-
Method Details
-
systemEntryPoint
void systemEntryPoint()Perform operations necessary upon entry to the system.
-