Class TimeZoneSetting

java.lang.Object
oracle.webcenter.generalsettings.internal.model.GSPreferences
oracle.webcenter.generalsettings.model.TimeZoneSetting

public class TimeZoneSetting extends oracle.webcenter.generalsettings.internal.model.GSPreferences
TimeZoneSetting provides shared preferences for time zone settings.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static String
    The time zone used if the user does not set a time zone preference.
    static final String
    The internal preference key to store the time zone preference.

    Fields inherited from class oracle.webcenter.generalsettings.internal.model.GSPreferences

    NULL_VALUE
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static Calendar
    Get the current time as a Calendar object based on the current user's timezone setting.
    static Calendar
    Gets the current time as a Calendar object based on the given user's timezone setting.
    static String
    Returns the application's default time zone identifier.
    static Calendar
    Returns a Calendar object representing the current time at the Greenwich Meridian (time zone GMT+00:00).
    static int
    Returns the number of minutes since midnight based on the current user's timezone setting.
    static int
    Returns the number of minutes since midnight based on the given user's timezone setting.
    static Calendar
    Gets the Calendar object representing the midnight hour for the current date irrespective of the current time.
    static Calendar
    Gets the Calendar object representing the midnight hour for the current date irrespective of the current time.
    static int
    Returns the number of minutes since midnight of the previous night based on the current user's timezone setting.
    static int
    Returns the number of minutes since midnight of the previous night based on the given user's timezone setting.
    static String
    Returns the current user's preferred time zone identifier.
    static String
    Returns the given user's preferred time zone identifier.
    static TimeZone
    Gets the current user's preferred time zone (as a TimeZone object).
    static TimeZone
    Gets the given user's preferred time zone (as a TimeZone object).
    static String
    Returns the current user's time zone identifier preference value.
    static String
    Returns the given user's time zone identifier preference value.
    static void
    Sets the application's time zone identifier.
    static void
    Deprecated.
    replaced by setUserTimeZonePref()
    static void
    setPreferredTimeZone(String username, String timezone)
    Deprecated.
    replaced by setUserTimeZonePref()
    static void
    setUserTimeZone(String username, TimeZone timezone)
    Sets the given user's preferred time zone (as a TimeZone object).
    static void
    Sets the current user's preferred time zone (as a TimeZone object).
    static void
    Set the current user's preferred time zone identifier.
    static void
    setUserTimeZonePref(String username, String timezone)
    Sets the given user's preferred time zone identifier.

    Methods inherited from class oracle.webcenter.generalsettings.internal.model.GSPreferences

    getPreferred, getPreferred, getProvider, getSystemPref, getUserPref, getUserPref, log, setSystemPref, setUserPref

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • TIME_ZONE_KEY

      public static final String TIME_ZONE_KEY
      The internal preference key to store the time zone preference.
      See Also:
    • DEFAULT_TIMEZONE_ID

      public static String DEFAULT_TIMEZONE_ID
      The time zone used if the user does not set a time zone preference. This default time zone is based on the server's time zone.
  • Constructor Details

    • TimeZoneSetting

      public TimeZoneSetting()
  • Method Details

    • getPreferredTimeZone

      @Exported public static String getPreferredTimeZone()
      Returns the current user's preferred time zone identifier.

      The time zone identifier returned is in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00. This identifier enables you to create a java.util.TimeZone object as follows :-
      TimeZone.getTimeZone("GMT+05:30");

      Returns:
      the current user's preferred time zone identifier
    • getPreferredTimeZone

      @Exported public static String getPreferredTimeZone(String username)
      Returns the given user's preferred time zone identifier.

      The time zone identifier is returned in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00. This identifier can be used to create a java.util.TimeZone object as follows :-
      TimeZone.getTimeZone("GMT+05:30");

      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      the given user's preferred time zone identifier
    • getUserTimeZonePref

      @Exported public static String getUserTimeZonePref()
      Returns the current user's time zone identifier preference value. If the user's preference is not set, returns null. This API is designed to be used in a user preference setting UI, for all other uses, the getPreferredTimeZone() API should be used.

      The time zone identifier is returned in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00.

      Returns:
      the current user's time zone identifier preference value or null if the user preference is not set.
    • getUserTimeZonePref

      @Exported public static String getUserTimeZonePref(String username)
      Returns the given user's time zone identifier preference value. If the user's preference is not set, returns null. This API is designed to be used in a user preference setting UI, for all other uses, the getPreferredTimeZone() API should be used.

      The time zone identifier is returned in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00.

      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      the current user's time zone identifier preference value or null if the user preference is not set.
    • setPreferredTimeZone

      @Exported public static void setPreferredTimeZone(String username, String timezone)
      Deprecated.
      replaced by setUserTimeZonePref()
    • setPreferredTimeZone

      @Exported public static void setPreferredTimeZone(String timezone)
      Deprecated.
      replaced by setUserTimeZonePref()
    • setUserTimeZonePref

      @Exported public static void setUserTimeZonePref(String timezone)
      Set the current user's preferred time zone identifier.

      The time zone identifier should be of the format GMT{+|-}hh:mi e.g. GMT+05:30 or GMT-08:00.

      Parameters:
      timezone - the preferred time zone identifier
    • setUserTimeZonePref

      @Exported public static void setUserTimeZonePref(String username, String timezone)
      Sets the given user's preferred time zone identifier.

      The time zone identifier should be in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00.

      Parameters:
      username - the username to set the preference for. If null, sets the preference for the current authenticated user
      timezone - the preferred time zone identifier
    • getDefaultTimeZone

      @Exported public static String getDefaultTimeZone()
      Returns the application's default time zone identifier.

      The time zone identifier returned is in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00. This identifier enables you to create a java.util.TimeZone object as follows :-
      TimeZone.getTimeZone("GMT+05:30");

      Returns:
      the application's default time zone identifier
    • setDefaultTimeZone

      @Exported public static void setDefaultTimeZone(String timezone)
      Sets the application's time zone identifier.

      The time zone identifier should be in the format GMT{+|-}hh:mi, for example, GMT+05:30 or GMT-08:00.

      Parameters:
      timezone - the preferred time zone identifier
    • getUserTimeZone

      @Exported public static TimeZone getUserTimeZone()
      Gets the current user's preferred time zone (as a TimeZone object).
      Returns:
      the current user's preferred time zone
    • getUserTimeZone

      @Exported public static TimeZone getUserTimeZone(String username)
      Gets the given user's preferred time zone (as a TimeZone object).
      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      the given user's preferred time zone
    • setUserTimeZone

      @Exported public static void setUserTimeZone(TimeZone timezone)
      Sets the current user's preferred time zone (as a TimeZone object).
      Parameters:
      timezone - the time zone to set
    • setUserTimeZone

      @Exported public static void setUserTimeZone(String username, TimeZone timezone)
      Sets the given user's preferred time zone (as a TimeZone object).
      Parameters:
      username - the username to set the preference for. If null, sets the preference for the current authenticated user
      timezone - the time zone to set
    • getCurrentTime

      @Exported public static Calendar getCurrentTime()
      Get the current time as a Calendar object based on the current user's timezone setting.
      Returns:
      the current time for the current user
    • getCurrentTime

      @Exported public static Calendar getCurrentTime(String username)
      Gets the current time as a Calendar object based on the given user's timezone setting.
      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      the current time for the given user
    • getMidnightToday

      @Exported public static Calendar getMidnightToday()
      Gets the Calendar object representing the midnight hour for the current date irrespective of the current time. For example if the current time based on the current user's timezone is 14:00 on 31st May 2007, this method will return '00:00 31th May 2007'.
    • getMidnightToday

      @Exported public static Calendar getMidnightToday(String username)
      Gets the Calendar object representing the midnight hour for the current date irrespective of the current time. For example if the current time based on the current user's timezone is 14:00 on 24th April 2009, this method will return '00:00 24th April 2009'.
    • getMidnightOffset

      @Exported public static int getMidnightOffset()
      Returns the number of minutes since midnight based on the current user's timezone setting. For example, at 04:00, this method returns 240 (4 hours x 60).
      Returns:
      number of minutes since midnight
    • getMidnightOffset

      @Exported public static int getMidnightOffset(String username)
      Returns the number of minutes since midnight based on the given user's timezone setting. For example, at 04:00, this method returns 240 (4 hours x 60).
      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      number of minutes since midnight
    • getMidnightYesterdayOffset

      @Exported public static int getMidnightYesterdayOffset()
      Returns the number of minutes since midnight of the previous night based on the current user's timezone setting. For example, at 04:00, this method returns 1680 (4 hours x 60 + 24 hours x 60).
      Returns:
      number of minutes since midnight yesterday
    • getMidnightYesterdayOffset

      @Exported public static int getMidnightYesterdayOffset(String username)
      Returns the number of minutes since midnight of the previous night based on the given user's timezone setting. For example, at 04:00, this method returns 1680 (4 hours x 60 + 24 hours x 60).
      Parameters:
      username - the username to obtain the preference for. If null, obtains the preference for the current authenticated user
      Returns:
      number of minutes since midnight yesterday
    • getGMTTime

      @Exported public static Calendar getGMTTime()
      Returns a Calendar object representing the current time at the Greenwich Meridian (time zone GMT+00:00).
      Returns:
      a Calendar object representing the current time in timezone GMT+00:00