Package com.flowable.core.idm.api.ldap
Interface DistinguishedNameProvider
-
- All Known Implementing Classes:
DistinguishedNameProviderImpl
public interface DistinguishedNameProvider
An interface that can be implemented to provide the distinguished names based on a collection of user ids and / group ids / keys.This is needed for the Ldap User and Group queries when it is being requested to query users that are member of a certain group, or when it is being requested to query groups for a particular user.
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>
getGroupDnsFromIds(Collection<String> groupIds)
Collection<String>
getGroupDnsFromKeys(Collection<String> groupKeys)
Collection<String>
getUserDns(Collection<String> userIds)
-
-
-
Method Detail
-
getUserDns
Collection<String> getUserDns(Collection<String> userIds)
-
getGroupDnsFromKeys
Collection<String> getGroupDnsFromKeys(Collection<String> groupKeys)
-
getGroupDnsFromIds
Collection<String> getGroupDnsFromIds(Collection<String> groupIds)
-
-