zanzagalo's Profile
Agile User
7
Points

Questions
1

Answers
1

  • Agile User Asked on July 19, 2018 in Other APIs.

    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;

    • 1503 views
    • 1 answers
    • 0 votes