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 callPentahoSystem.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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
systemEntryPoint()
Perform operations necessary upon entry to the system.
-