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

org.mule.tools.muleesb.Restarter Maven / Gradle / Ivy

Go to download

Maven plugin that helps control Mule ESB servers, including CE, EE Standalone and HA deployments. Main use is for running integration tests but can be used also for deploying an application to any environment after all tests were ran. Some of the features are: Download Mule Standalone from a Maven Repository and install it locally. Start Mule Standalone server. Deploy a Mule application to a server. Undeploy a Mule appliction. Stop a Mule Standalone server. Restart a Mule Standalone server. Assemble a Mule cluster and deploy applications.

The newest version!
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.tools.muleesb;

import org.mule.test.infrastructure.process.MuleControllerException;
import org.mule.test.infrastructure.process.MuleProcessController;

import java.io.File;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;

public class Restarter
{

    private MuleProcessController mule;
    private File muleHome;
    private Log log;

    public Restarter(MuleProcessController mule, File muleHome, Log log)
    {
        this.mule = mule;
        this.muleHome = muleHome;
        this.log = log;
    }

    public void execute() throws MojoFailureException, MojoExecutionException
    {
        if (null == muleHome)
        {
            throw new MojoFailureException("MULE_HOME is not set");
        }
        if (!muleHome.exists())
        {
            throw new MojoFailureException("Couldn't find MULE_HOME directory at: " + muleHome);
        }
        log.info("MULE_HOME is set to: " + muleHome);
        if (!mule.isRunning())
        {
            throw new MojoFailureException("Mule ESB is not running");
        }
        try
        {
            log.debug("Retarting Mule ESB ...");
            mule.restart();
            log.info("Mule ESB restarted.");
        }
        catch (MuleControllerException e)
        {
            throw new MojoFailureException("Couldn't restart Mule ESB.");
        }
        catch (Exception e)
        {
            throw new MojoExecutionException("Couldn't restart Mule ESB.");
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy