Interface SessionManagerFactory<SC,LC,B extends Batch>
-
- Type Parameters:
SC- the ServletContext specification typeLC- the local context typeB- the batch type
- All Superinterfaces:
AutoCloseable
public interface SessionManagerFactory<SC,LC,B extends Batch> extends AutoCloseable
A factory for creating a session manager.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()SessionManager<LC,B>createSessionManager(SessionManagerConfiguration<SC> configuration)Create as session manager using the specified context and identifier factory.
-
-
-
Method Detail
-
createSessionManager
SessionManager<LC,B> createSessionManager(SessionManagerConfiguration<SC> configuration)
Create as session manager using the specified context and identifier factory.- Parameters:
context- a session contextidFactory- a session identifier factory- Returns:
- a new session manager
-
close
void close()
- Specified by:
closein interfaceAutoCloseable
-
-