Package eu.planets_project.ifr.core.wee.api.utils

Examples of eu.planets_project.ifr.core.wee.api.utils.WorkflowConfigUtil


    private String currXMLConfigTempFileURI;
    private HashMap<Integer,Boolean> isValidConf = new HashMap<Integer,Boolean>();
 
  public ExpTypeWeeUtils(ExpTypeWeeBean bean){
    this.weeBean = bean;
    wfConfigUtil = new WorkflowConfigUtil();
  }
View Full Code Here


    serviceTypes.put("Modify", "eu.planets_project.services.modify.Modify");
    serviceTypes.put("CreateView",
        "eu.planets_project.services.view.CreateView");
    serviceTypes.put("ViewAction",
        "eu.planets_project.services.view.ViewAction");
    wfConfigUtil = new WorkflowConfigUtil();
    bValidXMLConfig = false;
    bXMLConfigUploaded = false;
    xmlConfigFileRef = null;
      wfDescription = null;
      bWfTemplateAvailableInRegistry = false;
View Full Code Here

    //0. create a TestbedBatchJob object that's used to temporarily park the results
     TestbedBatchJob testbedBatchJob = new TestbedBatchJob( expID);

    //1. submit the Workflow to the WEE System and receive a ticket
    try {
      retTicket = "" + TestbedWEEBatchProcessor.weeService.submitWorkflow((ArrayList<DigitalObject>) digObjs, workflowConfig.getTemplate().getClazz(), new WorkflowConfigUtil().marshalWorkflowConfigToXMLTemplate(workflowConfig));
      submitTicketToExecutionQueue(retTicket, testbedBatchJob, expID);
          return retTicket;
    } catch (Exception e) {
      log.error("Error when remotely submitting workflow to WEE or ticket to pollingQueue was called",e);
      return "";
View Full Code Here

    //0. create a TestbedBatchJob object that's used to temporarily park the results
    TestbedBatchJob testbedBatchJob = new TestbedBatchJob( expID);
   
    //1. submit the Workflow to the WEE System and receive a ticket
    try {
      retTicket = "" + TestbedWEEBatchProcessor.weeService.submitWorkflowByReference((ArrayList<URI>) digObjRef, workflowConfig.getTemplate().getClazz(), new WorkflowConfigUtil().marshalWorkflowConfigToXMLTemplate(workflowConfig));
      submitTicketToExecutionQueue(retTicket, testbedBatchJob, expID);
          return retTicket;
    } catch (Exception e) {
      log.error("Error when remotely submitting workflow by reference to WEE or ticket to pollingQueue was called",e);
      return "";
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.wee.api.utils.WorkflowConfigUtil

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.