User-specific time zone information
Draft comment:
This topic was viewed 3 times since its publication
The JavaServer Faces (JSF) components provide a utility
for handling user-specific time zone information in the List component.
This topic was viewed 3 times since its publication
The BPCListHandler class uses the com.ibm.bpc.clientcore.util.User interface to get information about the time zone and locale of each user. The List component expects the implementation of the interface to be configured with user as the managed-bean name in your JavaServer Faces (JSF) configuration file. If this entry is missing from the configuration file, the time zone in which the process server is running is returned.
The com.ibm.bpc.clientcore.util.User interface
is defined as follows:
public interface User {
/**
* The locale used by the client of the user.
* @return Locale.
*/
public Locale getLocale();
/**
* The time zone used by the client of the user.
* @return TimeZone.
*/
public TimeZone getTimeZone();
/**
* The name of the user.
* @return name of the user.
*/
public String getName();
}
This topic only applies to BAW, and is located in the BAW repository. Last updated on 2025-03-13 12:15