Examples of MyExperimentActionInfo


Examples of eu.scape_project.planning.services.pa.taverna.MyExperimentActionInfo

    public void loadCustomMyExperimentService() {
        if (customMyExperimentServiceUri == null || "".equals(customMyExperimentServiceUri)) {
            return;
        }

        customMyExperimentServiceInfo = new MyExperimentActionInfo();
        customMyExperimentServiceInfo.setDescriptor(customMyExperimentServiceUri);
        customMyExperimentServiceInfo.setUrl(customMyExperimentServiceUri);
        customMyExperimentServiceInfo.setShortname(customMyExperimentServiceUri);
        customMyExperimentServiceInfo.setInfo(customMyExperimentServiceUri);
View Full Code Here

Examples of eu.scape_project.planning.services.pa.taverna.MyExperimentActionInfo

        query.setDependencyLabelPattern(dependencyLabel);
        query.finishQuery();

        List<WorkflowInfo> workflows = myExperimentRESTClient.searchComponents(query);
        for (WorkflowInfo workflow : workflows) {
            MyExperimentActionInfo service = new MyExperimentActionInfo();

            service.setShortname(workflow.getName());
            service.setDescriptor(workflow.getDescriptor());
            service.setInfo(workflow.getDescription());
            service.setUrl(workflow.getContentUri());
            service.setContentType(workflow.getContentType());

            services.add(service);
        }

        return services;
View Full Code Here

Examples of eu.scape_project.planning.services.pa.taverna.MyExperimentActionInfo

        query.addInstallationEnvironment(environment).addInstallationEnvironmentType(environmentType)
            .setDependencyLabelPattern(dependencyLabel).finishQuery();

        List<WorkflowInfo> workflows = myExperimentRESTClient.searchComponents(query);
        for (WorkflowInfo workflow : workflows) {
            MyExperimentActionInfo service = new MyExperimentActionInfo();

            service.setShortname(workflow.getName());
            service.setDescriptor(workflow.getDescriptor());
            service.setInfo(workflow.getDescription());
            service.setUrl(workflow.getContentUri());
            service.setContentType(workflow.getContentType());

            services.add(service);
        }

        return services;
View Full Code Here

Examples of eu.scape_project.planning.services.pa.taverna.MyExperimentActionInfo

        query.addInstallationEnvironment(environment).addInstallationEnvironmentType(environmentType)
            .setDependencyLabelPattern(dependencyLabel).finishQuery();

        List<WorkflowInfo> workflows = myExperimentRESTClient.searchComponents(query);
        for (WorkflowInfo workflow : workflows) {
            MyExperimentActionInfo service = new MyExperimentActionInfo();

            service.setShortname(workflow.getName());
            service.setDescriptor(workflow.getDescriptor());
            service.setInfo(workflow.getDescription());
            service.setUrl(workflow.getContentUri());
            service.setContentType(workflow.getContentType());

            services.add(service);
        }

        return services;
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.