{
String currConfigurationLocation = this.configurationLocations[i];
this.getLogger().info("Loading the Jetty serviceConfiguration file : " + currConfigurationLocation);
InputStream is = this.locate(this.serviceApplicationDir, currConfigurationLocation);
XmlConfiguration configuration = new XmlConfiguration(is);
configuration.configure(currServer);
is.close();
}
this.server = currServer;
}