public interface DeploymentListener
| Modifier and Type | Method and Description |
|---|---|
default void |
onDeploymentFailure(String artifactName,
Throwable cause)
Notifies that a deploy for a given application has finished with a failure.
|
default void |
onDeploymentStart(String artifactName)
Notifies that a deploy for a given application has started.
|
default void |
onDeploymentSuccess(String artifactName)
Notifies that a deploy for a given application has successfully finished.
|
default void |
onMuleContextConfigured(String artifactName,
MuleContext context)
Notifies the configuration of the
MuleContext for a given app. |
default void |
onMuleContextCreated(String artifactName,
MuleContext context,
org.mule.runtime.api.config.custom.CustomizationService customizationService)
Notifies the creation of the
MuleContext for a given app. |
default void |
onMuleContextInitialised(String artifactName,
MuleContext context)
Notifies the initialization of the
MuleContext for a given app. |
default void |
onUndeploymentFailure(String artifactName,
Throwable cause)
Notifies that an un-deployment for a given application has finished with a failure.
|
default void |
onUndeploymentStart(String artifactName)
Notifies that an un-deployment for a given application has started.
|
default void |
onUndeploymentSuccess(String artifactName)
Notifies that an un-deployment for a given application has successfully finished.
|
default void onDeploymentStart(String artifactName)
artifactName - the name of the application being deployeddefault void onDeploymentSuccess(String artifactName)
artifactName - the name of the application being deployeddefault void onDeploymentFailure(String artifactName, Throwable cause)
artifactName - the name of the application being deployedcause - the cause of the failuredefault void onUndeploymentStart(String artifactName)
artifactName - the name of the application being un-deployeddefault void onUndeploymentSuccess(String artifactName)
artifactName - the name of the application being un-deployeddefault void onUndeploymentFailure(String artifactName, Throwable cause)
artifactName - the name of the application being un-deployedcause - the cause of the failuredefault void onMuleContextCreated(String artifactName, MuleContext context, org.mule.runtime.api.config.custom.CustomizationService customizationService)
MuleContext for a given app.artifactName - name of the application that owns the mule contextcontext - mule context for the application being deployeddefault void onMuleContextInitialised(String artifactName, MuleContext context)
MuleContext for a given app.artifactName - name of the application that owns the mule contextcontext - mule context for the application being deployeddefault void onMuleContextConfigured(String artifactName, MuleContext context)
MuleContext for a given app.artifactName - name of the application that owns the mule contextcontext - mule context for the application being deployedCopyright © 2003–2017 MuleSoft, Inc.. All rights reserved.