Package org.jboss.as.server

Examples of org.jboss.as.server.ServerOperationContext


    }

    @Override
    public OperationResult execute(OperationContext context, ModelNode operation, ResultHandler resultHandler)
            throws OperationFailedException {
        ServerOperationContext serverContext = ServerOperationContext.class.cast(context);

        ModelNode result = new ModelNode().set(serverContext.getController().getState().toString());
        resultHandler.handleResultFragment(ResultHandler.EMPTY_LOCATION, result);
        resultHandler.handleResultComplete();
        return new BasicOperationResult();
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.server.ServerOperationContext

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.