I have 3 different page where I use list of Users.
First page contains dataTable with users from one session scope managed bean. On that page I can change selected user details.
Second page also contains dataTable with users, but from different session scope bean. On this page I delete users from dataTable (list of users) and data base too.
I realized that this is not good idea, because if I made changes on one user, that changes will not be shown on page where I delete users.
Is application scope bean with only list of users a solution?