Replies: 1 comment
-
|
Due to fact that event processing would be limited to server-level ProviderFactories, not component-level factories, we should rather utilize |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently when realm is deleted in
MapRealmProvider.removeRealmthere is following code:During implementaion of jpa authz store, removal of all authz objects from particular realm would require addition of
before the code above. The reason for that is that
session.clients().removeClients(realm);removes clients one by one andClientRemovedEventis published. Then inClientApplicationSynchronizer.synchronizethe event is handled. There allResourceServers are beeing removed one by one byClient.The Idea from @hmlnarik was to remove all code above from
MapRealmProvider.removeRealmand replace it by publishing newRealmPreRemoveEvent.Beta Was this translation helpful? Give feedback.
All reactions