You might use dependency injection to get the values from that bean with session scope.
@Inject UserModel user;
Then you might use this Object in your UserControl bean.
By the way you don't need to implement serializable when you are dealing with RequestScope beans.