Interface DeployerPhases


public interface DeployerPhases
Call back methods for the deployer phases
Author:
Jesper Pedersen
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is called after the deployment phase has ended
    void
    This method is called after the undeployment phase has ended
    void
    This method is called before the deployment phase begins
    void
    This method is called before the undeployment phase begins
  • Method Details

    • preDeploy

      void preDeploy() throws Throwable
      This method is called before the deployment phase begins
      Throws:
      Throwable - Thrown to indicate an error
    • postDeploy

      void postDeploy() throws Throwable
      This method is called after the deployment phase has ended
      Throws:
      Throwable - Thrown to indicate an error
    • preUndeploy

      void preUndeploy() throws Throwable
      This method is called before the undeployment phase begins
      Throws:
      Throwable - Thrown to indicate an error
    • postUndeploy

      void postUndeploy() throws Throwable
      This method is called after the undeployment phase has ended
      Throws:
      Throwable - Thrown to indicate an error