Examples of ExperimentWorkflow


Examples of eu.planets_project.tb.impl.services.mockups.workflow.ExperimentWorkflow

        }
       
        // Invoke, depending on the experiment type, using any old WF as the source:
        // FIXME Can this be made cleaner?  What about passing back more meaningful errors?
        ExpTypeBackingBean bb = new ExpTypeIdentify();
        ExperimentWorkflow expwf = bb.getWorkflow(this.workflowType);
        if( expwf != null ) {
            expwf.setParameters(getParameters());
            return expwf;
        }
       
        // FAILED:
        if( AdminManagerImpl.isExperimentDeprecated(exp) ) {
View Full Code Here

Examples of eu.planets_project.tb.impl.services.mockups.workflow.ExperimentWorkflow

      //a) TB-experiment types before version1.0 - these use the ExperimentWorkflow
      if(executable.getBatchSystemIdentifier().equals(BatchProcessor.BATCH_IDENTIFIER_TESTBED_LOCAL)){
        //get the specific batchProcessor implementation
        bp = tbBatchManager.getBatchProcessor(BatchProcessor.BATCH_IDENTIFIER_TESTBED_LOCAL);
        // Invoke, depending on the experiment type:
        ExperimentWorkflow ewf = executable.getWorkflow();
        log.info("Submitting workflow: "+ewf+" to batch processor: "+BatchProcessor.BATCH_IDENTIFIER_TESTBED_LOCAL);
        log.info("Got inputs #"+executable.getInputData().size());
        String queue_key = bp.submitBatch( exp.getEntityID(), ewf , executable.getInputData());
        //already set: executable.setBatchQueueIdentifier(BatchProcessor.BATCH_QUEUE_TESTBED_LOCAL);
        executable.setBatchExecutionIdentifier(queue_key);
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.