Interface InstallationEvent
-
@ProviderType public interface InstallationEvent
Optional listener which can be used to monitor the activities of the installer.- Since:
- 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InstallationEvent.TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getSource()
Return the source of the event.InstallationEvent.TYPE
getType()
Return the event type.
-
-
-
Method Detail
-
getType
InstallationEvent.TYPE getType()
Return the event type.- Returns:
- The event type.
-
getSource
java.lang.Object getSource()
Return the source of the event. ForInstallationEvent.TYPE.STARTED
andInstallationEvent.TYPE.SUSPENDED
events this isnull
. ForInstallationEvent.TYPE.PROCESSED
events this is aTaskResource
.- Returns:
- The source of the event.
-
-