feat(kits): split LogoutListener from AttributeListener#683
feat(kits): split LogoutListener from AttributeListener#683denischilik wants to merge 2 commits into
Conversation
PR SummaryMedium Risk Overview
Written by Cursor Bugbot for commit ed12758. This will update automatically on new commits. Configure here. |
Introduce KitIntegration.LogoutListener for logout handling; AttributeListener no longer extends it. KitManagerImpl calls logout() on LogoutListener only. Embedded kits that implement AttributeListener now explicitly implement LogoutListener; AttributeListenerTestKit updated accordingly.
9f8dc36 to
ed12758
Compare
|


Summary
KitIntegration.LogoutListeneras a separate contract from the deprecatedAttributeListener.KitManagerImpl.logout()invokeslogout()only on kits that implementLogoutListener.AttributeListenernow explicitly implementLogoutListeneras well.AttributeListenerTestKitimplements both interfaces for instrumented tests.