use of org.eclipse.scout.rt.shared.services.common.security.ILogoutService in project scout.rt by eclipse.
the class AbstractClientSession method inactivateSession.
protected void inactivateSession() {
try {
ILogoutService logoutService = BEANS.opt(ILogoutService.class);
if (logoutService != null) {
logoutService.logout();
}
} finally {
setActive(false);
fireSessionChangedEvent(new SessionEvent(this, SessionEvent.TYPE_STOPPED));
LOG.info("Client session stopped [session={}, user={}]", this, getUserId());
}
}
Aggregations