I want to retrieve an expanded list of users of a specific project in HP QC in Java - not only user personal number, but also user full name, for example.
//establish connection to a project
IList users = connection.usersList().queryInterface(IList.class);
for (int i = 1; i <= users.count(); i++) {
String user = (String) users.item(i);
System.out.println(user);
}
This code only retrieves user personal numbers. What should I do?
The answer was found in QcTools4j-0.2.4.jar.