public void read() {
try {
if (file.exists()) {
InputStream inputStream = new FileInputStream(file);
Document document = new DOMBuilder().build(new XML4JDOMAdapter().getDocument(inputStream, false));
Element root = document.getRootElement();
Element fileConnectionMappings = root.getChild("file-connection-mapings");
//connectionBundle.jdomRead(root);
}