Is there an example I can look at where time zone information is saved with the user account in a Seam application. For instance, when a user registers, they select their time zone from a pulldown. It is saved. All time stamp information in the application then reflects this fact for this user.
No. Something like this should work:
@In User user;
@In TimeZone timeZone;
@Observer("org.jboss.seam.timeZoneSelected")
public updateTimeZone() {
user.setTimeZone(timeZone);
}