7
Points
Questions
1
Answers
1
-
sorry cannot edit 1st post, reposting just code
IAgileSession session = … //created standard with url, usr, pass
IAdminList adminList = session.getAdminInstance().getListLibrary().getAdminList(listName);
IAgileList list = adminListByName.getValues();
Iterator<IAgileList>; iterator = list.getChildNodes().iterator();
Collection<Sting> result = new ArrayList<>();
while (iterator.hasNext()) {
IAgileList iAgileList = (IAgileList) iterator.next();result.add(iAgileList.getValue());
}
return result;- 1663 views
- 1 answers
- 0 votes