- Timestamp:
- 07/05/08 22:16:04 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/server/src/ome/services/sessions/SessionContext.java
r2124 r2592 24 24 25 25 Session getSession(); 26 26 27 List<String> getUserRoles(); 27 28 29 // Reference counting 30 31 /** 32 * Return the current number of references which this session is aware of. 33 */ 34 int refCount(); 35 36 /** 37 * Increment the current {@link #refCount() reference count} and return the 38 * new value atomically. 39 */ 40 int increment(); 41 42 /** 43 * Decrement the current {@link #refCount() reference count} and return the 44 * new value atomically. 45 */ 46 int decrement(); 28 47 }
