- Timestamp:
- 07/05/08 22:16:04 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/server/src/ome/services/sessions/SessionManager.java
r2274 r2592 51 51 Session create(Principal principal); 52 52 53 /** 54 * 55 * @param session 56 * @return 57 */ 53 58 Session update(Session session); 59 60 /** 61 * Allows decrementing the reference count for a session without calling the 62 * actual {@link #close(String)} logic. This is useful when it is assumed 63 * that another user will re-attach to the same session. A timeout can still 64 * cause the session to be removed. 65 * 66 * @param uuid 67 * @return 68 */ 69 int detach(String uuid); 54 70 55 71 /**
