Determine if a ldap user is a member of a jazz group through Java API call to Jazz ldap server?
One answer
If you want to call the JTS in the Plain Java Client Libraries, you can use
String[] groups = teamRepository.externalUserRegistryManager().fetchGroupsForUser(userID, monitor);
This call only receives the information JTS has about the repository groups the user has associated. The call is JTS/RTC Plain Java Client Library related and does not itself query the LDAP system.
String[] groups = teamRepository.externalUserRegistryManager().fetchGroupsForUser(userID, monitor);
This call only receives the information JTS has about the repository groups the user has associated. The call is JTS/RTC Plain Java Client Library related and does not itself query the LDAP system.