Uiinfrastructure API Docs  
 

IStartupNotification Methods

The methods of the IStartupNotification interface are listed below. For a complete list of IStartupNotification interface members, see the IStartupNotification Members topic.

Public Instance Methods

getReport Used to retrieve a comprehensive report of startup errors from the run.
getReportEventLogs Used to retrieve a comprehensive report of startup errors from the run.
runEnd Called when the startup process completes. Always called, via finally.
runStart Called at the beginning of the startup process.
setReportEventLogs Used to override generated results. Use this to leverage the diagnostic page for non-diagnostic uses such as special error handling
taskBegin Called at the beginning of the task. Simple start notification.
taskEnd Called at the end of a specific task. Always called, with a finally. The ReturnValue here contains the final result of that task: the integer result code holds what the systemn feels the final result is. Notice that an individual step could fail with error, but the overall task simply show a warning.
taskInitComplete Called once task initialization is complete. Returns the number of steps in this task. The ReturnValue contains any errors or exceptions that may have occurred during initialization.
taskStepBegin Called before a specific task step begins. Simply a notifier.
taskStepEnd Called at the end of an individual tasks' step. Always called, with a finally. Exceptions and error return values in the ReturnValue object.

See Also

IStartupNotification Interface | com.plumtree.uiinfrastructure.application.notification Namespace