ilgrosso commented on code in PR #1159:
URL: https://github.com/apache/syncope/pull/1159#discussion_r2447674018
##########
core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/propagation/LDAPMembershipPropagationActions.java:
##########
@@ -76,11 +76,25 @@ public class LDAPMembershipPropagationActions implements
PropagationActions {
protected GroupDAO groupDAO;
/**
- * Allows easy subclassing for the ConnId AD connector bundle.
+ * Allows easy subclassing for different LDAP schemes.
*
- * @return the name of the attribute used to keep track of group
memberships
+ * @return the name of the attribute used to keep track of group
memberships on the __ACCOUNT__ object
*/
protected String getGroupMembershipAttrName() {
+ return "memberOf";
+ }
+
+ @Override
+ public Set<String> moreAttrsToGet(Optional<PropagationTaskInfo> taskInfo,
Provision provision) {
Review Comment:
`final` keyword missing for method's arguments
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]