I am trying to direct activiti engine to use our custom user/group table instead the default ACT_ID_USER.
I followed some post in this forum and they suggested to override UserEntityManager / Factory and UserEntityQuery. But it looks like the identity service uses UserIdentityManager / Factory and UserIdentityQuery.
Hi, Correct, I guess I didn't see the code properly and also in my custom session factory, I returned UserEntityManager.class in <java>getSessionType</java> instead of UserIdentityManager.class.
Thanks I made it working now.
Though I didn't understand why we have IdentityInfoEntity and IdentityInfoEntityManager as well.