Package org.jboss.as.console.mbui.dmr

Examples of org.jboss.as.console.mbui.dmr.ResourceAddress.asOperation()


    public void onCreateResource(final String addressString, final ModelNode payload, final Callback... callback) {

        final String name = payload.get(NAME).asString();
        final ResourceAddress address = new ResourceAddress(addressString, statementContext);
        ModelNode op = address.asOperation(payload);
        op.get(OP).set(ADD);

        dispatcher.execute(new DMRAction(op), new AsyncCallback<DMRResponse>() {
            @Override
            public void onFailure(Throwable caught) {
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.