List all ProcessAreas of a repository
I want to list all the projects of a repository. I use this code to login:
But now I don't know what to do. Can anyone help
public class TestDriver {
public static String JAZZ_SERVER = "https://localhost:9443/ccm";
public static void main (String[] args) {
try {
Login login = new Login(JAZZ_SERVER);
ITeamRepository repo = login.loginUser("TestUser", "123456");
} catch (AuthenticationException e1) {
System.out.println(e1.getMessage());
} catch (TeamRepositoryException e2) {
e2.printStackTrace();
} finally {
TeamPlatform.shutdown();
}
}
}
But now I don't know what to do. Can anyone help