Class LDAPMembershipPropagationActions
- java.lang.Object
-
- org.apache.syncope.core.provisioning.java.propagation.LDAPMembershipPropagationActions
-
- All Implemented Interfaces:
PropagationActions
public class LDAPMembershipPropagationActions extends Object implements PropagationActions
Simple action for propagating group memberships to LDAP groups, when the same resource is configured for both users and groups.- See Also:
LDAPMembershipPullActions
-
-
Field Summary
Fields Modifier and Type Field Description protected DerAttrHandler
derAttrHandler
protected GroupDAO
groupDAO
protected static Logger
LOG
protected UserDAO
userDAO
-
Constructor Summary
Constructors Constructor Description LDAPMembershipPropagationActions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
before(PropagationTaskInfo taskInfo)
Executes logic before actual propagation.protected void
buildManagedGroupConnObjectLinks(ExternalResource resource, String connObjectLinkTemplate, Set<String> connObjectLinks)
protected String
evaluateGroupConnObjectLink(String connObjectLinkTemplate, Group group)
protected String
getGroupMembershipAttrName()
Allows easy subclassing for the ConnId AD connector bundle.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.syncope.core.provisioning.api.propagation.PropagationActions
after, moreAttrsToGet, moreAttrsToGet, onError
-
-
-
-
Field Detail
-
LOG
protected static final Logger LOG
-
derAttrHandler
@Autowired protected DerAttrHandler derAttrHandler
-
userDAO
@Autowired protected UserDAO userDAO
-
groupDAO
@Autowired protected GroupDAO groupDAO
-
-
Method Detail
-
getGroupMembershipAttrName
protected String getGroupMembershipAttrName()
Allows easy subclassing for the ConnId AD connector bundle.- Returns:
- the name of the attribute used to keep track of group memberships
-
evaluateGroupConnObjectLink
protected String evaluateGroupConnObjectLink(String connObjectLinkTemplate, Group group)
-
buildManagedGroupConnObjectLinks
protected void buildManagedGroupConnObjectLinks(ExternalResource resource, String connObjectLinkTemplate, Set<String> connObjectLinks)
-
before
@Transactional(readOnly=true) public void before(PropagationTaskInfo taskInfo)
Description copied from interface:PropagationActions
Executes logic before actual propagation.- Specified by:
before
in interfacePropagationActions
- Parameters:
taskInfo
- propagation task
-
-