}
}
}
//finally load storage contents into a string
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
contents.writeContent(byteArrayOutputStream);
data.put(name, new String(byteArrayOutputStream.toByteArray()));
} catch (StorageException e) {
throw new ConfigurationException("Unable to load configuration key '" +
name + "' value from storage path: " + propValue, e);
} catch (IOException e) {