Package net.sf.archimede.migration.archimede1

Examples of net.sf.archimede.migration.archimede1.ConversionFolder


    super.init();
        String fileRespositoryPath = this.getInitParameter(INIT_PARAM_FILE_REPOSITORY_PATH);
        String username = this.getInitParameter(INIT_PARAM_REPOSITORY_USERNAME);
        String password = this.getInitParameter(INIT_PARAM_REPOSITORY_PASSWORD);
        System.out.println("*********** Importing content from: " + fileRespositoryPath  + " ***********");
        ConversionRepository cr = ConversionRepository.createInstance(fileRespositoryPath, this.getJdbcConfig(), username, password);
        try {
            cr.importAll();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        System.out.println("*********** Importation done for content from: " + fileRespositoryPath  + " ***********");
    }
View Full Code Here


        String driver = this.getInitParameter(INIT_PARAM_JDBC_DRIVER);
        String url = this.getInitParameter(INIT_PARAM_JDBC_URL);
        String username = this.getInitParameter(INIT_PARAM_JDBC_USERNAME);
        String password = this.getInitParameter(INIT_PARAM_JDBC_PASSWORD);
       
        return new JdbcDao(username, password, driver, url);
    }
View Full Code Here

TOP

Related Classes of net.sf.archimede.migration.archimede1.ConversionFolder

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.