Package org.jboss.as.controller.client

Examples of org.jboss.as.controller.client.OperationResult


        }
        DeploymentPlanImpl planImpl = DeploymentPlanImpl.class.cast(plan);
        Map<UUID, String> actionsById = new HashMap<UUID, String>();
        Operation operation = getDeploymentPlanOperation(planImpl, actionsById);
        Handler handler = new Handler(operation);
        OperationResult c = client.execute(operation, handler.resultHandler);
        handler.setCancellable(c.getCancellable());
        return new DomainDeploymentPlanResultFuture(planImpl, handler, actionsById);
    }
View Full Code Here


     * {@inheritDoc}
     */
    @Override
    protected Future<ModelNode> executeOperation(Operation operation) {
        Handler handler = new Handler(operation);
        OperationResult c = client.execute(operation, handler.resultHandler);
        handler.setCancellable(c.getCancellable());
        return handler;
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.controller.client.OperationResult

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.