@SuppressWarnings("unchecked")
public List<Application> parseApplication() {
List<Application> appList = new LinkedList<Application>();
Element aroot = getRoot();
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);