Package org.apache.airavata.client.api

Examples of org.apache.airavata.client.api.WorkflowOutputDataSettings


            SecuritySettings customSecuritySettings = exAdOpt.getCustomSecuritySettings();
            if (customSecuritySettings != null){
                advanceOptions.setSecuritySettings(generateSecuritySettingsObj(customSecuritySettings));
            }

            WorkflowOutputDataSettings outputDataSettings = exAdOpt.getCustomWorkflowOutputDataSettings();
            List<org.apache.airavata.experiment.execution.OutputDataSettings> dataSettingsList = new ArrayList<org.apache.airavata.experiment.execution.OutputDataSettings>();
            if (outputDataSettings != null){
                OutputDataSettings[] outputDataSettingsList = outputDataSettings.getOutputDataSettingsList();
                for (OutputDataSettings opds : outputDataSettingsList){
                    org.apache.airavata.experiment.execution.OutputDataSettings dataSettings = generateOutputDataObject(opds);
                    dataSettingsList.add(dataSettings);
                }
                org.apache.airavata.experiment.execution.WorkflowOutputDataSettings wfOpDSettings = new org.apache.airavata.experiment.execution.WorkflowOutputDataSettings();
View Full Code Here

TOP

Related Classes of org.apache.airavata.client.api.WorkflowOutputDataSettings

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.