| Summary: | [RoR] WorkAreaManager must support multiple sessions | ||
|---|---|---|---|
| Product: | [RT] Riena | Reporter: | Elias Volanakis <elias> |
| Component: | UI | Assignee: | Project Inbox <riena.core-inbox> |
| Status: | NEW --- | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows Vista | ||
| Whiteboard: | |||
| Bug Depends on: | |||
| Bug Blocks: | 302893 | ||
The WorkAreaManager is currently a true singleton. This causes problems when running with multiple users, because it causes controller instances to be shared amogst n users. Solution: make is a SessionSingleton. WorkAreaManager.java: // ... private final static SessionSingletonProvider<WorkareaManager> WM = new SessionSingletonProvider<WorkareaManager>( WorkareaManager.class);