Package eu.planets_project.ifr.core.wee.api.workflow.jobwrappers

Examples of eu.planets_project.ifr.core.wee.api.workflow.jobwrappers.MigrationWFWrapper


   * events and to persist the object within the specified repository
   */
  private URI runMigration(Migrate migrationService,
      URI digORef, boolean endOfRoundtripp) throws Exception {

    MigrationWFWrapper migrWrapper = new MigrationWFWrapper(this,
        this.processingDigo.getPermanentUri(),
        migrationService,
        digORef,
        DataRegistryFactory.createDataRegistryIdFromName("/experiment-files/executions/"),
        endOfRoundtripp);
   
    return migrWrapper.runMigration();

  }
View Full Code Here


   * events and to persist the object within the specified repository
   */
  private URI runMigration(Migrate migrationService,
      URI digORef) throws Exception {

    MigrationWFWrapper migrWrapper = new MigrationWFWrapper(this,
        this.processingDigo,
        migrationService,
        digORef,
        new URI("planets://localhost:8080/dr/experiment-files"),
        true);
   
    return migrWrapper.runMigration();

  }
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.wee.api.workflow.jobwrappers.MigrationWFWrapper

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.