throw new ConfigurationException("Could not load parser " + parser, e);
}
try {
getLogger().debug("Creating Repository with this directory: " + this.workDir);
FilesystemStore repository = new FilesystemStore();
repository.setLogger(getLogger());
repository.setDirectory(this.workDir);
this.componentManager.addComponentInstance(Store.ROLE + "/Filesystem", repository);
} catch (IOException e) {
getLogger().error("Could not create repository!", e);
throw new ConfigurationException("Could not create the repository!", e);
}