private void loadConfiguration(final BeePluginRepository repository) throws Exception {
_initialized = true;
final String fileName = PathUtils.merge(_configurationRoot, FILENAME);
final BeeResource res = this.getConfigurationResource(fileName);
if (res.exists()) {
_configuration = new Configuration(new File(res.getUrl()));
this.loadData(repository, _configuration);
}
}