Interface IApplicationProvisionNotifier
- All Known Implementing Classes:
ApplicationManager
public interface IApplicationProvisionNotifier
Notifies interested listeners that application state has changed.
-
Method Summary
Modifier and TypeMethodDescriptionvoidnotifyLifecycleStateChanged(ILifecycleAware object, LifecycleState state) Notifies interested listeners that application life-cycle state has changed.voidnotifyUpdateStateChanged(IApplication application, ApplicationUpdateState state) Notifies interested listeners that application update state has changed.
-
Method Details
-
notifyLifecycleStateChanged
Notifies interested listeners that application life-cycle state has changed.- Parameters:
application- Application which state has changed. Must not be null.state- New application life-cycle state. Must not be null.
-
notifyUpdateStateChanged
Notifies interested listeners that application update state has changed.- Parameters:
application- Application which state has changed. Must not be null.state- New application update state. Must not be null.
-