Examples of BatchWorkflowResultLogImpl


Examples of eu.planets_project.tb.impl.model.exec.BatchWorkflowResultLogImpl

    //endTime
    Calendar c2 = new GregorianCalendar();
    c2.setTimeInMillis(weeWFResult.getEndTime());
    batchRecord.setStartDate(c2);
 
    BatchWorkflowResultLogImpl wfResultLog = new BatchWorkflowResultLogImpl();
    try {
      //try serializing the workflow result log- as this is the way it needs to be stored
      String wfResultxml = JaxbUtil.marshallObjectwithJAXB(WorkflowResult.class, weeWFResult);
      log.debug("Successfully serialized the workflowResult Log via Jaxb" );
      //store the wfResultLog in the db model bean
      wfResultLog.setSerializedWorkflowResult(wfResultxml);
    } catch (Exception e) {
      log.debug("Problems serializing wfResultLog object",e);
      this.processNotify_WorkflowFailed(expID, "WorkflowResult not serializable");
      return;
    }
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.