Hola, A couple of small comments:
> 1. Requirements to be implemented by the Session.java API > bool isDirty - (has the session changed in this request) > bool isDiffable - is the session able provide a diff > byte[] getSessionData() - returns the whole session > byte[] getSessionDiff() - optional, see isDiffable, resets the diff data > void setSessionDiff(byte[] diff) - optional, see isDiffable, apply > changes from another node You may be able to simply judge isDiffable for yourself without that method by checking that getSessionDiff() != null. > 2. Requirements to be implemented by the SessionManager.java API > void setSessionMap(HashMap map) - makes the map implementation pluggable The argument there should be of type Map, not HashMap, to allow other Map implementations. Yoav --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]