Node root = aroot.selectSingleNode("//applications");
List<Element> elementList = root.selectNodes("application");
for (Element e : elementList) {
String user = e.attributeValue("user");
String password = e.attributeValue("password");
Application app = new Application();
app.setUser(user);
app.setPassword(password);
appList.add(app);
}
return appList;
}