File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
spring-session-data-mongodb/src/main/java/org/springframework/session/data/mongo Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -78,16 +78,15 @@ public MongoSession(String sessionId) {
78
78
this (sessionId , MapSession .DEFAULT_MAX_INACTIVE_INTERVAL_SECONDS );
79
79
}
80
80
81
- MongoSession () {
81
+ public MongoSession () {
82
82
this (MapSession .DEFAULT_MAX_INACTIVE_INTERVAL_SECONDS );
83
83
}
84
84
85
- MongoSession (long maxInactiveIntervalInSeconds ) {
85
+ public MongoSession (long maxInactiveIntervalInSeconds ) {
86
86
this (UuidSessionIdGenerator .getInstance ().generate (), maxInactiveIntervalInSeconds );
87
87
}
88
88
89
89
public MongoSession (String id , long maxInactiveIntervalInSeconds ) {
90
-
91
90
this .id = id ;
92
91
this .originalSessionId = id ;
93
92
this .intervalSeconds = maxInactiveIntervalInSeconds ;
You can’t perform that action at this time.
0 commit comments