Package com.github.fungal.spi.deployers
Interface DeployerPhases
public interface DeployerPhases
Call back methods for the deployer phases
- Author:
- Jesper Pedersen
-
Method Summary
Modifier and TypeMethodDescriptionvoidThis method is called after the deployment phase has endedvoidThis method is called after the undeployment phase has endedvoidThis method is called before the deployment phase beginsvoidThis method is called before the undeployment phase begins
-
Method Details
-
preDeploy
This method is called before the deployment phase begins- Throws:
Throwable- Thrown to indicate an error
-
postDeploy
This method is called after the deployment phase has ended- Throws:
Throwable- Thrown to indicate an error
-
preUndeploy
This method is called before the undeployment phase begins- Throws:
Throwable- Thrown to indicate an error
-
postUndeploy
This method is called after the undeployment phase has ended- Throws:
Throwable- Thrown to indicate an error
-