Changeset 1076 for branches/omero_ds_fix
- Timestamp:
- 11/15/06 09:12:01 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/omero_ds_fix/components/server/src/ome/logic/ConfigImpl.java
r1038 r1076 115 115 /* Source: EJB3 Specification 116 116 * Purpose: Marks this service as stateless, which means that instances can be 117 * created as needed and given to any client. Concurrent calls are permitted117 * created as needed and given to any client. Concurrent calls are permitted 118 118 * though they may be routed to different servers. The stateful counterpart 119 * is simply @Stateful, but it imposes several restrictions on the class. All 120 * fields must be transient or serializable 119 * is simply @Stateful, but it imposes several restrictions on the class, e.g. 120 * that all fields must be transient or serializable. On the other hand, all 121 * fields for @Stateless instances must be thread-safe, with no state being 122 * obviously thread-safetest. 121 123 * @see https://trac.openmicroscopy.org.uk/omero/ticket/173 122 124 */
