Package com.tangosol.coherence.servlet
Interface HttpSessionIdGenerator
-
- All Known Implementing Classes:
RandomHttpSessionIdGenerator
public interface HttpSessionIdGenerator
The HttpSessionIdGenerator is an interface that is used to generate identifiers for newly created session models.- Since:
- Coherence 3.6
- Author:
- jk 2009.08.25
- See Also:
HttpSessionModel.getId()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
generateSessionId(int length)
Generate a potential session identifier.
-
-
-
Method Detail
-
generateSessionId
String generateSessionId(int length)
Generate a potential session identifier. The returned identifier may be in use already.- Parameters:
length
- session id length- Returns:
- a potential session identifier
-
-