private ConfigurationInfo loadConfigurationInfo(Artifact configId) throws NoSuchConfigException, IOException {
File location = repository.getLocation(configId);
if (!location.exists() && !location.canRead()) {
throw new NoSuchConfigException(configId);
}
File inPlaceLocation = inPlaceConfUtil.readInPlaceLocation(location);
ConfigurationInfo configurationInfo;