Package org.jboss.modcluster

Examples of org.jboss.modcluster.ModClusterServiceMBean.stopContext()


                    final String webHost = VIRTUAL_HOST.resolveModelAttribute(context, operation).asString();
                    final String webContext = CONTEXT.resolveModelAttribute(context, operation).asString();
                    final int waitTime = WAIT_TIME.resolveModelAttribute(context, operation).asInt();

                    try {
                        service.stopContext(webHost, webContext, waitTime, TimeUnit.SECONDS);
                    } catch (IllegalArgumentException e) {
                        throw new OperationFailedException(new ModelNode().set(ModClusterLogger.ROOT_LOGGER.contextOrHostNotFound(webHost, webContext)));
                    }

                    context.completeStep(new OperationContext.RollbackHandler() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.