Package org.rhq.core.domain.install.remote

Examples of org.rhq.core.domain.install.remote.CustomAgentInstallData


    }

    @RequiredPermission(Permission.MANAGE_INVENTORY)
    @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
    public AgentInstallInfo installAgent(Subject subject, RemoteAccessInfo remoteAccessInfo, String parentPath) {
        CustomAgentInstallData data = new CustomAgentInstallData(parentPath, false);
        return installAgent(subject, remoteAccessInfo, data);
    }
View Full Code Here


        SC.ask(MSG.view_remoteAgentInstall_overwriteAgentTitle(), MSG.view_remoteAgentInstall_overwriteAgentQuestion(),
            new BooleanCallback() {
                @Override
                public void execute(Boolean overwriteExistingAgent) {
                    CustomAgentInstallData customData = new CustomAgentInstallData(getAgentInstallPath(),
                        overwriteExistingAgent.booleanValue(), agentConfigurationXml); //, rhqAgentEnvSh);
                    remoteInstallService.installAgent(getRemoteAccessInfo(), customData,
                        new AsyncCallback<AgentInstallInfo>() {
                            public void onFailure(Throwable caught) {
                                displayError(MSG.view_remoteAgentInstall_error_4(), caught);
View Full Code Here

TOP

Related Classes of org.rhq.core.domain.install.remote.CustomAgentInstallData

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.