cancel
Showing results for 
Search instead for 
Did you mean: 

Override UserIdentityManager or UserEntityManager

vgaur
Confirmed Champ
Confirmed Champ
Hi,

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.

Can someone help me with this.

Thanks
-Vishal
2 REPLIES 2

kiddinho
Champ in-the-making
Champ in-the-making
Hi vgaur,
UserIdentityManager is interface and UserEntityManager implements it Smiley Happy

vgaur
Confirmed Champ
Confirmed Champ
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.