Package eu.scape_project.planning.services.pa.taverna

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


        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

        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

        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

Related Classes of eu.scape_project.planning.services.pa.taverna.MyExperimentActionInfo

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.