Commit 85a289f7 authored by Vedran Pavic's avatar Vedran Pavic Committed by Stephane Nicoll

Harmonize Spring Session flush mode properties javadoc

See gh-17797
parent 84dd1f2d
...@@ -35,7 +35,8 @@ public class HazelcastSessionProperties { ...@@ -35,7 +35,8 @@ public class HazelcastSessionProperties {
private String mapName = "spring:session:sessions"; private String mapName = "spring:session:sessions";
/** /**
* Sessions flush mode. * Sessions flush mode. Determines when session changes are written to the session
* store.
*/ */
private FlushMode flushMode = FlushMode.ON_SAVE; private FlushMode flushMode = FlushMode.ON_SAVE;
......
...@@ -37,7 +37,8 @@ public class RedisSessionProperties { ...@@ -37,7 +37,8 @@ public class RedisSessionProperties {
private String namespace = "spring:session"; private String namespace = "spring:session";
/** /**
* Sessions flush mode. * Sessions flush mode. Determines when session changes are written to the session
* store.
*/ */
private FlushMode flushMode = FlushMode.ON_SAVE; private FlushMode flushMode = FlushMode.ON_SAVE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment