-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add objectIOFactoryClassName to context manager
- Loading branch information
Showing
9 changed files
with
94 additions
and
44 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
core/src/main/java/de/javakaffee/web/msm/DefaultObjectIOFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
package de.javakaffee.web.msm; | ||
|
||
import de.javakaffee.web.msm.MemcachedSessionService.SessionManager; | ||
|
||
public class DefaultObjectIOFactory implements ObjectIOFactory { | ||
@Override | ||
public ObjectIOStrategy createObjectIOStrategy() { | ||
public ObjectIOStrategy createObjectIOStrategy(final SessionManager _manager) { | ||
return new DefaultObjectIOStrategy(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package de.javakaffee.web.msm; | ||
|
||
import de.javakaffee.web.msm.MemcachedSessionService.SessionManager; | ||
|
||
public interface ObjectIOFactory { | ||
ObjectIOStrategy createObjectIOStrategy(); | ||
ObjectIOStrategy createObjectIOStrategy(SessionManager sessionManager); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters