Leiste mit Community-Erfolgen erweitern.

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

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

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 Akzeptierte Lösung

Avatar

Korrekte Antwort von
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

Lösung in ursprünglichem Beitrag anzeigen

2 Antworten

Avatar

Korrekte Antwort von
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.