Class DataObjectEncodingUtils

java.lang.Object
oracle.stellent.ridc.model.impl.DataObjectEncodingUtils

public abstract class DataObjectEncodingUtils extends Object
Data encoding utilities
  • Field Details

  • Constructor Details

    • DataObjectEncodingUtils

      public DataObjectEncodingUtils()
  • Method Details

    • addLocaleInfo

      public static void addLocaleInfo(DataBinder dataBinder)
      Add the localization information into the databinder
      Parameters:
      dataBinder - the databinder
    • getNullHandlingStrategyFromBinder

      public static Protocol.NullHandlingStrategy getNullHandlingStrategyFromBinder(DataBinder dataBinder, boolean removeIdcNullHandlingParamFromBinderWhenDone)
      Get the null value handling strategy from the databinder By default, we will treat the null value as empty string should an explicit handling strategy not be specified
      Parameters:
      dataBinder - the databinder
      removeIdcNullHandlingParamFromBinderWhenDone - whether to remove the param from the databinder when done (preventing it getting sent to the Content Server)
    • getBoolean

      public static boolean getBoolean(DataObject dataObject, String name, boolean defaultValue)
      Retrieve the result as a boolean
      Parameters:
      dataObject - the data object
      name - the property name
      defaultValue - the default value if not found
      Returns:
      the boolean value
    • setBoolean

      public static void setBoolean(DataObject dataObject, String name, boolean value)
      Set a value as a boolean
      Parameters:
      dataObject - the data object
      name - the property name
      value - the property value
    • getInteger

      public static int getInteger(DataObject dataObject, String name, int defaultValue)
      Retrieve an integer from the DataObject
      Parameters:
      dataObject - the data object
      name - the property name
      defaultValue - the default value if not found
      Returns:
      the integer value or default
    • getLong

      public static long getLong(DataObject dataObject, String name, long defaultValue)
      Retrieve an long from the DataObject
      Parameters:
      dataObject - the data object
      name - the property name
      defaultValue - the default value if not found
      Returns:
      the integer value or default
    • setDate

      public static void setDate(DataObject dataObject, String name, Date date)
      Set a date value.
      Parameters:
      dataObject - the data object
      name - the property name
      date - the date in GMT time
    • getCalendar

      public static Calendar getCalendar(DataObject dataObject, String name)
      Retrieve the getCalendar.
      Parameters:
      dataObject - the data object
      name - the property name
      Returns:
      the date value in GMT or null if not found
    • encodeDate

      public static String encodeDate(Date date)
      Encode the date in the standard iso8601 date format
      Parameters:
      date - the date
      Returns:
      the encoded date format
    • decodeDate

      public static Calendar decodeDate(String dateString) throws ParseException
      Parse the date from the encoded string. The string is assumed to be in GMT (UTC Time) unless the string specifies a timezone directly.
      Parameters:
      dateString - the encoded date
      Returns:
      the date object (in GMT time)
      Throws:
      ParseException