All Downloads are FREE. Search and download functionalities are using the official Maven repository.

forklift.deployment.DeploymentEvents Maven / Gradle / Ivy

package forklift.deployment;

public interface DeploymentEvents {
    void onDeploy(Deployment deployment);
    void onUndeploy(Deployment deployment);

    /**
     * Process this deployment?
     * @param  deployment [description]
     * @return            [description]
     */
    default boolean filter(Deployment deployment) {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy