- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for processParentGroup (0.11 seconds)
-
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
* @param roleList The list to add role names to. * @param id The group ID to process. */ protected void processParentGroup(final EntraIdUser user, final List<String> groupList, final List<String> roleList, final String id) { processParentGroup(user, groupList, roleList, id, 0); } /** * Processes parent group information for nested groups with depth tracking.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
// Test the overload that doesn't take depth parameter // It should call the depth-tracking version with depth 0 try { authenticator.processParentGroup(null, groupList, roleList, "test-id"); } catch (Exception e) { // Expected due to null user } // Verify lists are still valid assertNotNull(groupList);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0)