Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 335617 - [RoR] WorkAreaManager must support multiple sessions
Summary: [RoR] WorkAreaManager must support multiple sessions
Status: NEW
Alias: None
Product: Riena
Classification: RT
Component: UI (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows Vista
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 302893
  Show dependency tree
 
Reported: 2011-01-27 15:56 EST by Elias Volanakis CLA
Modified: 2011-01-27 15:58 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Elias Volanakis CLA 2011-01-27 15:56:58 EST
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);