Package org.jboss.as.controller.BasicModelController

Examples of org.jboss.as.controller.BasicModelController.XmlMarshallingHandler


        registerInternalOperations();

        ModelNodeRegistration hostRegistry = localHostProxy.getRegistry();
        registry.registerSubModel(PathElement.pathElement(HOST, localHostName), hostRegistry);
        this.hostModel = localHostProxy.getHostModel();
        XmlMarshallingHandler xmlHandler = new XmlMarshallingHandler(localHostProxy.getConfigurationPersister(), hostModel);
        hostRegistry.registerOperationHandler(CommonDescriptions.READ_CONFIG_AS_XML, xmlHandler, xmlHandler, false, OperationEntry.EntryType.PRIVATE);

        this.injectedHostPersister = localHostProxy.getConfigurationPersister();
        ModelNode ourModel = getModel();
        ourModel.get(HOST, localHostName).set(this.hostModel);
View Full Code Here

TOP

Related Classes of org.jboss.as.controller.BasicModelController.XmlMarshallingHandler

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.