protected final void loadConfiguration() throws ConfigurationFileNotFoundException, ConfigurationParsingException {
InputStream in;
try {
in = this.url.openStream();
} catch (IOException e) {
throw new ConfigurationFileNotFoundException("Problem with configuration " + url.getFile() + " occured.", e);
}
this.loadedTime = Calendar.getInstance().getTime().getTime();
this.getParser().parseConfiguration(in, configuration);
this.configuration.setLoaded(true);
}