org.apache.shiro.session.mgt.eis
Class JavaUuidSessionIdGenerator
java.lang.Object
org.apache.shiro.session.mgt.eis.JavaUuidSessionIdGenerator
- All Implemented Interfaces:
- SessionIdGenerator
public class JavaUuidSessionIdGenerator
- extends Object
- implements SessionIdGenerator
SessionIdGenerator that generates String values of JDK UUID's as the session IDs.
- Since:
- 1.0
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
JavaUuidSessionIdGenerator
public JavaUuidSessionIdGenerator()
generateId
public Serializable generateId(Session session)
- Ignores the method argument and simply returns
UUID.randomUUID().toString().
- Specified by:
generateId in interface SessionIdGenerator
- Parameters:
session - the Session instance to which the ID will be applied.
- Returns:
- the String value of the JDK's next
randomUUID().
Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.