Package org.jboss.as.model

Examples of org.jboss.as.model.ServerModelDeploymentStartStopUpdate


            case REMOVE: {
                controller.addServerModelUpdate(new ServerModelDeploymentRemove(action.getDeploymentUnitUniqueName()), resultHandler, action.getId());
                break;
            }
            case DEPLOY: {
                controller.addServerModelUpdate(new ServerModelDeploymentStartStopUpdate(action.getDeploymentUnitUniqueName(), true), resultHandler, action.getId());
                break;
            }
            case UNDEPLOY: {
                controller.addServerModelUpdate(new ServerModelDeploymentStartStopUpdate(action.getDeploymentUnitUniqueName(), false), resultHandler, action.getId());
                break;
            }
            case REDEPLOY: {
                controller.addServerModelUpdate(new ServerModelDeploymentReplaceUpdate(action.getDeploymentUnitUniqueName(), action.getDeploymentUnitUniqueName()), resultHandler, action.getId());
                break;
View Full Code Here

TOP

Related Classes of org.jboss.as.model.ServerModelDeploymentStartStopUpdate

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.