Package eu.planets_project.ifr.core.services.migration.genericwrapper1.utils

Examples of eu.planets_project.ifr.core.services.migration.genericwrapper1.utils.DocumentLocator


     * @throws java.lang.Exception
     */
    @Before
    public void setUp() throws Exception {

  final DocumentLocator documentLocator = new DocumentLocator(
    CONFIG_FILE_NAME);

  serviceDescriptionFactory = new ServiceDescriptionFactory(this
    .getClass().getCanonicalName(), SERVICE_PROVIDER,
    documentLocator.getDocument());
    }
View Full Code Here


    /**
     * @throws java.lang.Exception
     */
    @Before
    public void setUp() throws Exception {
  DocumentLocator documentLocator = new DocumentLocator(TEST_CONFIG_FILE);
  Document testConfiguration = documentLocator.getDocument();
  this.migrationPathFactory = new DBMigrationPathFactory(testConfiguration);
    }
View Full Code Here

    public void setUp() throws Exception {

  final Configuration environmentConfiguration = ServiceConfig
    .getConfiguration("genericwrapper2_GenericMigrationWrapperTest");

  final DocumentLocator documentLocator = new DocumentLocator(
    "GenericWrapperConfigFileExample.xml");

  this.genericWrapper = new GenericMigrationWrapper(documentLocator
    .getDocument(), environmentConfiguration, this.getClass()
    .getCanonicalName());

  this.testParameters = new ArrayList<Parameter>();
    }
View Full Code Here

    /**
     * @throws Exception
     */
    public MigrationPathsTest() throws Exception {
        final DocumentLocator documentLocator = new DocumentLocator(
                TEST_CONFIGURATION_FILE_NAME);
        final Document pathsConfiguration = documentLocator.getDocument();

        final MigrationPathFactory migrationPathsFactory = new DBMigrationPathFactory(pathsConfiguration);
        this.migrationPathsToTest = migrationPathsFactory
                .getAllMigrationPaths();
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.ifr.core.services.migration.genericwrapper1.utils.DocumentLocator

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.