Skip to content

Commit aa533c2

Browse files
committed
Add missing javadoc to session fixation
1 parent 316380e commit aa533c2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

config/src/main/java/org/springframework/security/config/annotation/web/configurers/SessionManagementConfigurer.java

+7
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,13 @@ public ConcurrencyControlConfigurer expiredUrl(String expiredUrl) {
389389
return this;
390390
}
391391

392+
/**
393+
* Determines the behaviour when an expired session is detected.
394+
*
395+
* @param expiredSessionStrategy the {@link SessionInformationExpiredStrategy} to
396+
* use when an expired session is detected.
397+
* @return the {@link ConcurrencyControlConfigurer} for further customizations
398+
*/
392399
public ConcurrencyControlConfigurer expiredSessionStrategy(
393400
SessionInformationExpiredStrategy expiredSessionStrategy) {
394401
SessionManagementConfigurer.this.expiredSessionStrategy = expiredSessionStrategy;

0 commit comments

Comments
 (0)