Examples of addLogInfo()


Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

      //add report on outputDigitalObject
      wfResultItem.setOutputDigitalObject(migrateResult
          .getDigitalObject());
      return migrateResult.getDigitalObject();
    } catch (Exception e) {
      wfResultItem.addLogInfo("Migration failed "+e);
      throw e;
    }
    }

}
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

        WorkflowResultItem.GENERAL_WORKFLOW_ACTION,
        System.currentTimeMillis(),
        this.getWorkflowReportingLogger());
    this.addWFResultItem(wfResultItem);
   
      wfResultItem.addLogInfo("working on workflow template: "+this.getClass().getName());
      wfResultItem.addLogInfo("workflow-instance id: "+this.getWorklowInstanceID());
     
       //start executing on digital ObjectA
      this.processingDigo = dgoA.getPermanentUri();
     
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

        System.currentTimeMillis(),
        this.getWorkflowReportingLogger());
    this.addWFResultItem(wfResultItem);
   
      wfResultItem.addLogInfo("working on workflow template: "+this.getClass().getName());
      wfResultItem.addLogInfo("workflow-instance id: "+this.getWorklowInstanceID());
     
       //start executing on digital ObjectA
      this.processingDigo = dgoA.getPermanentUri();
     
        try {
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

       //start executing on digital ObjectA
      this.processingDigo = dgoA.getPermanentUri();
     
        try {
          //identify format before migration roundtripp
          wfResultItem.addLogInfo("starting identify object A format: ");
          URI dgoAFormat = identifyFormat(identify1,dgoA.getPermanentUri());
          wfResultItem.addLogInfo("completed identify object A format: "+dgoAFormat);
         
          // Migrate Object round-trip
            wfResultItem.addLogInfo("starting migration A-B");
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

     
        try {
          //identify format before migration roundtripp
          wfResultItem.addLogInfo("starting identify object A format: ");
          URI dgoAFormat = identifyFormat(identify1,dgoA.getPermanentUri());
          wfResultItem.addLogInfo("completed identify object A format: "+dgoAFormat);
         
          // Migrate Object round-trip
            wfResultItem.addLogInfo("starting migration A-B");
            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

          wfResultItem.addLogInfo("starting identify object A format: ");
          URI dgoAFormat = identifyFormat(identify1,dgoA.getPermanentUri());
          wfResultItem.addLogInfo("completed identify object A format: "+dgoAFormat);
         
          // Migrate Object round-trip
            wfResultItem.addLogInfo("starting migration A-B");
            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
              wfResultItem.addLogInfo("starting migration B-C");
            URI dgoCRef = runMigration(migrate2,dgoBRef,false);
              wfResultItem.addLogInfo("completed migration B-C");
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

          wfResultItem.addLogInfo("completed identify object A format: "+dgoAFormat);
         
          // Migrate Object round-trip
            wfResultItem.addLogInfo("starting migration A-B");
            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
              wfResultItem.addLogInfo("starting migration B-C");
            URI dgoCRef = runMigration(migrate2,dgoBRef,false);
              wfResultItem.addLogInfo("completed migration B-C");
              wfResultItem.addLogInfo("starting migration C-D");
            URI dgoDRef = runMigration(migrate3,dgoCRef,false);
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

         
          // Migrate Object round-trip
            wfResultItem.addLogInfo("starting migration A-B");
            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
              wfResultItem.addLogInfo("starting migration B-C");
            URI dgoCRef = runMigration(migrate2,dgoBRef,false);
              wfResultItem.addLogInfo("completed migration B-C");
              wfResultItem.addLogInfo("starting migration C-D");
            URI dgoDRef = runMigration(migrate3,dgoCRef,false);
              wfResultItem.addLogInfo("completed migration C-D");
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

            wfResultItem.addLogInfo("starting migration A-B");
            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
              wfResultItem.addLogInfo("starting migration B-C");
            URI dgoCRef = runMigration(migrate2,dgoBRef,false);
              wfResultItem.addLogInfo("completed migration B-C");
              wfResultItem.addLogInfo("starting migration C-D");
            URI dgoDRef = runMigration(migrate3,dgoCRef,false);
              wfResultItem.addLogInfo("completed migration C-D");
              wfResultItem.addLogInfo("starting migration D-E");
            //this object is documented as main experiment outcome file
View Full Code Here

Examples of eu.planets_project.ifr.core.wee.api.workflow.WorkflowResultItem.addLogInfo()

            URI dgoBRef = runMigration(migrate1,dgoA.getPermanentUri(),false);
              wfResultItem.addLogInfo("completed migration A-B");
              wfResultItem.addLogInfo("starting migration B-C");
            URI dgoCRef = runMigration(migrate2,dgoBRef,false);
              wfResultItem.addLogInfo("completed migration B-C");
              wfResultItem.addLogInfo("starting migration C-D");
            URI dgoDRef = runMigration(migrate3,dgoCRef,false);
              wfResultItem.addLogInfo("completed migration C-D");
              wfResultItem.addLogInfo("starting migration D-E");
            //this object is documented as main experiment outcome file
            URI dgoERef = runMigration(migrate4,dgoDRef,true);
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.