Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

CQ-Hybris user integration

Avatar

Level 4

How defaultProfileSynchronizer() works in CQ-Hybris integration?

what is the best practice for user creation in CQ-Hybris integrated system?

How to get all the addresses stored in Hybris to show in CQ address book?

1 Accepted Solution

Avatar

Correct answer by
Level 6

User sync happens by Lazy user importer in CQ. It creates user in Hybris if CQ user exists but not in Hybris and if Hybris user exists then it is imported into CQ. The synchronization happens in LazyUserImporter#postProcess() class which implements AuthenticationInfoPostProcessor

View solution in original post

2 Replies

Avatar

Correct answer by
Level 6

User sync happens by Lazy user importer in CQ. It creates user in Hybris if CQ user exists but not in Hybris and if Hybris user exists then it is imported into CQ. The synchronization happens in LazyUserImporter#postProcess() class which implements AuthenticationInfoPostProcessor

Avatar

Level 4

thanks for reply Sam.