Package org.jboss.as.standalone.client.impl.deployment

Examples of org.jboss.as.standalone.client.impl.deployment.DeploymentPlanImpl


        final SimpleFuture<ServerDeploymentPlanResult> resultFuture = new SimpleFuture<ServerDeploymentPlanResult>();
        final UpdateResultHandlerImpl resultHandler = new UpdateResultHandlerImpl(resultFuture, plan);
        final ServerUpdateController controller = new ServerUpdateController(getServerConfiguration(), getServiceContainer(),
                getDeploymentExecutor(), resultHandler, plan.isGlobalRollback(), !plan.isShutdown());

        DeploymentPlanImpl planImpl = (DeploymentPlanImpl) plan;

        for (DeploymentActionImpl action : planImpl.getDeploymentActionImpls()) {
            addServerGroupDeploymentUpdate(action, resultHandler, controller);
        }

        // Execute the plan asynchronously
        Runnable r = new Runnable() {
View Full Code Here

TOP

Related Classes of org.jboss.as.standalone.client.impl.deployment.DeploymentPlanImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.