Examples of NativeManagementWriteAttributeHandler


Examples of org.jboss.as.host.controller.operations.NativeManagementWriteAttributeHandler

        this.hostControllerInfo = hostControllerInfo;
    }

    @Override
    public void registerAttributes(ManagementResourceRegistration resourceRegistration) {
        final NativeManagementWriteAttributeHandler writeAttributeHandler = new NativeManagementWriteAttributeHandler(hostControllerInfo);
        for (AttributeDefinition attr : ATTRIBUTE_DEFINITIONS) {
            resourceRegistration.registerReadWriteAttribute(attr, null, writeAttributeHandler);
        }
    }
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.