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 + " ***********");
}