Browse Source

Add @inheritDoc to sessionIdChanged method

Closes gh-16211
pull/16190/head
12OneTwo12 1 year ago committed by Josh Cummings
parent
commit
d39e329234
  1. 3
      web/src/main/java/org/springframework/security/web/session/HttpSessionEventPublisher.java

3
web/src/main/java/org/springframework/security/web/session/HttpSessionEventPublisher.java

@ -74,6 +74,9 @@ public class HttpSessionEventPublisher implements HttpSessionListener, HttpSessi @@ -74,6 +74,9 @@ public class HttpSessionEventPublisher implements HttpSessionListener, HttpSessi
extracted(event.getSession(), new HttpSessionDestroyedEvent(event.getSession()));
}
/**
* @inheritDoc
*/
@Override
public void sessionIdChanged(HttpSessionEvent event, String oldSessionId) {
extracted(event.getSession(), new HttpSessionIdChangedEvent(event.getSession(), oldSessionId));

Loading…
Cancel
Save