Package org.rhq.plugins.jbossas.util

Examples of org.rhq.plugins.jbossas.util.JBossMessagingConfigurationEditor


        super.getValues(report, requests, "jboss.messaging:service=");
    }

    @Override
    public void start(ResourceContext<JBossASServerComponent<?>> context) {
        super.start(context, new JBossMessagingConfigurationEditor(context.getResourceType().getName()));
    }
View Full Code Here


        getResourceContext().getPluginConfiguration().put(pluginNameProperty);

        File deployDir = new File(parentResourceComponent.getConfigurationPath() + "/deploy");
        File deploymentFile = new File(deployDir, FileNameUtility.formatFileName(name) + "-destination-service.xml");

        xmlEditor = new JBossMessagingConfigurationEditor(resourceTypeName);
        xmlEditor.updateConfiguration(deploymentFile, name, report);
        try {
            parentResourceComponent.deployFile(deploymentFile);
        } catch (Exception e) {
            JBossASServerComponent.setErrorOnCreateResourceReport(report, e.getLocalizedMessage(), e);
View Full Code Here

TOP

Related Classes of org.rhq.plugins.jbossas.util.JBossMessagingConfigurationEditor

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.