Examples of updateExperiment()


Examples of eu.planets_project.tb.gui.backing.ExperimentBean.updateExperiment()

        //store information in the db entities
    ExperimentExecutable expExecutable = expBean.getExperiment().getExperimentExecutable();
        expExecutable.setWEEWorkflowConfig(this.buildWorkflowConfFromCurrentConfiguration());
        //specify which batch processing system WEE or TB/Local we want to use for this experiment
        expExecutable.setBatchSystemIdentifier(BatchProcessor.BATCH_QUEUE_TESTBED_WEE_LOCAL);
        expBean.updateExperiment();
  }
 
 
  /*
   * TODO AL: version 1.0 uses this structure to check for a valid workflow (exp-type specific) configuration.
View Full Code Here

Examples of eu.planets_project.tb.impl.TestbedManagerImpl.updateExperiment()

    System.out.println("createExperiment2: hier3");
    exp.setExperimentSetup(expSetup);
   
    //as the manager and the ExperimentImpl object are detached it is required to execute:
    System.out.println("createExperiment2: manager.updateExperiment with ID: "+exp.getEntityID());
    tbmanager.updateExperiment(exp);
    System.out.println("createExperiment2: hier4");
   
    return exp.getEntityID();
   
  }
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.