Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 335617

Summary: [RoR] WorkAreaManager must support multiple sessions
Product: [RT] Riena Reporter: Elias Volanakis <elias>
Component: UIAssignee: 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    

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);