Package org.rhq.enterprise.agent

Examples of org.rhq.enterprise.agent.PluginUpdate


     *
     * @throws Exception
     */
    private void doInfo(AgentMain agent) throws Exception {
        PrintWriter out = agent.getOut();
        PluginUpdate plugin_update = getPluginUpdateObject(agent);
        List<File> current_plugins = plugin_update.getCurrentPluginFiles();
        List<String> disabled_plugins = plugin_update.getPluginContainerConfiguration().getDisabledPlugins();
        List<String> installed_plugins = new ArrayList<String>();

        if (current_plugins.size() > 0) {
            out.println(MSG.getMsg(AgentI18NResourceKeys.PLUGINS_LISTING_PLUGINS_DETAILS));

View Full Code Here


            ClientRemotePojoFactory factory = sender.getClientRemotePojoFactory();
            server = factory.getRemotePojo(CoreServerService.class);
        }

        PluginContainerConfiguration pc_config = agent.getConfiguration().getPluginContainerConfiguration();
        PluginUpdate plugin_update = new PluginUpdate(server, pc_config);

        return plugin_update;
    }
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.agent.PluginUpdate

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.