Examples of translateInstallationSteps()


Examples of org.rhq.core.clientapi.agent.content.ContentAgentService.translateInstallationSteps()

        // Make call to agent
        List<DeployPackageStep> packageStepList;
        try {
            AgentClient agentClient = agentManager.getAgentClient(agent);
            ContentAgentService agentService = agentClient.getContentAgentService();
            packageStepList = agentService.translateInstallationSteps(resourceId, packageDetails);
        } catch (PluginContainerException e) {
            LOG.error("Error while sending deploy request to agent", e);

            // Throw so caller knows an error happened
            throw e;
View Full Code Here

Examples of org.rhq.enterprise.server.content.ContentManagerLocal.translateInstallationSteps()

        // Going forward, we'll need to create this earlier and store the user entered configuration in these
        // objects.  jdobies, Mar 3, 2008
        ResourcePackageDetails details = ContentUtils.toResourcePackageDetails(packageVersion);

        try {
            deploySteps = contentManager.translateInstallationSteps(resource.getId(), details);
        } catch (Exception e) {
            FacesContextUtility.addMessage(FacesMessage.SEVERITY_ERROR, "Could not retrieve installation steps", e);
        }

        log.info("Translated number of steps: " + (deploySteps != null ? deploySteps.size() : null));
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.