Say I have web application which has all beans with singleton scope. Now suppose we have bean Employee where name and some other properties are defined. Now i open two different sessions opened with two different browsers,and in one of the session i have changed value of that employee.
My question is,
What would be the employee object state for session 2?(I think it should give the modified value since it is singleton)