Class UuidHttpSessionIdGenerator
- java.lang.Object
-
- net.officefloor.web.session.generator.UuidHttpSessionIdGenerator
-
- All Implemented Interfaces:
HttpSessionIdGenerator
public class UuidHttpSessionIdGenerator extends java.lang.Object implements HttpSessionIdGenerator
- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description UuidHttpSessionIdGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
generateSessionId(FreshHttpSession session)
Generates the session Id.
-
-
-
Method Detail
-
generateSessionId
public void generateSessionId(FreshHttpSession session)
Description copied from interface:HttpSessionIdGenerator
Generates the session Id.
This method may return without the session Id being specified on the
FreshHttpSession
. In this case it is expected that the session Id will be populated some time in the near future.- Specified by:
generateSessionId
in interfaceHttpSessionIdGenerator
- Parameters:
session
-FreshHttpSession
to be populated with a new session Id.
-
-