private void fireAuthorizationChangedEvent() { this.eventBus.post( new AuthorizationConfigurationChanged() ); }
@AllowConcurrentEvents @Subscribe public void on( final AuthorizationConfigurationChangedEvent event ) { if ( !this.equals( event.getEventSender() ) ) { eventBus.post( new AuthorizationConfigurationChanged() ); } }
this.eventBus.post( new AuthorizationConfigurationChanged() );