JSONObject jsonRoleObject = new JSONObject();
jsonRoleObject.put("id", "root");
jsonRoleObject.put("name", "Roles");
jsonRoleObject.put("top", "true");
List<Role> rootRoles = roleAPI.findRootRoles();
JSONArray jsonChildren = new JSONArray();
for(Role r : rootRoles) {
JSONObject jsonRoleChildObject = new JSONObject();
jsonRoleChildObject.put("id", r.getId());