use of org.gluu.oxauth.service.external.session.SessionEvent in project oxAuth by GluuFederation.
the class ExpirationNotificatorTimer method remove.
public boolean remove(SessionId sessionId) {
try {
persistenceEntryManager.remove(sessionId.getDn());
externalApplicationSessionService.externalEvent(new SessionEvent(SessionEventType.GONE, sessionId));
return true;
} catch (Exception e) {
log.error(e.getMessage(), e);
return false;
}
}
Aggregations