cancel
Showing results for 
Search instead for 
Did you mean: 

LDAP: how to invoke queryUserByFullNameLike

hacendadda
Champ in-the-making
Champ in-the-making
I'm using  LADP integration with Activiti-Rest 5.13, I invoked queryUserByUserId and queryGroupsForUser using Rest apis but I couldn't find the approriate api to invoke queryUserByFullNameLike.
I'm wondering also if I could use other queries to get all the groups in LDAP

these are the priorities that I used in activiti-context.xml

<property name="queryUserByUserId" value="(&amp;(objectClass=inetOrgPerson)(uid={0}))" />
<property name="queryUserByFullNameLike" value="(&amp;(objectClass=inetOrgPerson)(|({0}=*{1}*)({2}=*{3}*)))" />
<property name="queryGroupsForUser" value="(&amp;(objectClass=groupOfUniqueNames)(uniqueMember={0}))" />
1 REPLY 1

jbarrez
Star Contributor
Star Contributor
Im a bit confused: where did you add that configuration?
So if Im understanding it correctly, you want those methods which are in the Java API also in the REST Api?