Package oracle.stellent.ridc.model.impl
Class DataObjectEncodingUtils
java.lang.Object
oracle.stellent.ridc.model.impl.DataObjectEncodingUtils
Data encoding utilities
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
addLocaleInfo
(DataBinder dataBinder) Add the localization information into the databinderstatic Calendar
decodeDate
(String dateString) Parse the date from the encoded string.static String
encodeDate
(Date date) Encode the date in the standard iso8601 date formatstatic boolean
getBoolean
(DataObject dataObject, String name, boolean defaultValue) Retrieve the result as a booleanstatic Calendar
getCalendar
(DataObject dataObject, String name) Retrieve the getCalendar.static int
getInteger
(DataObject dataObject, String name, int defaultValue) Retrieve an integer from the DataObjectstatic long
getLong
(DataObject dataObject, String name, long defaultValue) Retrieve an long from the DataObjectgetNullHandlingStrategyFromBinder
(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 specifiedstatic void
setBoolean
(DataObject dataObject, String name, boolean value) Set a value as a booleanstatic void
setDate
(DataObject dataObject, String name, Date date) Set a date value.
-
Field Details
-
ODBC_PREFIX
- See Also:
-
ODBC_POSTFIX
- See Also:
-
DATE_FORMAT
- See Also:
-
DATE_STRING
- See Also:
-
-
Constructor Details
-
DataObjectEncodingUtils
public DataObjectEncodingUtils()
-
-
Method Details
-
addLocaleInfo
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 databinderremoveIdcNullHandlingParamFromBinderWhenDone
- whether to remove the param from the databinder when done (preventing it getting sent to the Content Server)
-
getBoolean
Retrieve the result as a boolean- Parameters:
dataObject
- the data objectname
- the property namedefaultValue
- the default value if not found- Returns:
- the boolean value
-
setBoolean
Set a value as a boolean- Parameters:
dataObject
- the data objectname
- the property namevalue
- the property value
-
getInteger
Retrieve an integer from the DataObject- Parameters:
dataObject
- the data objectname
- the property namedefaultValue
- the default value if not found- Returns:
- the integer value or default
-
getLong
Retrieve an long from the DataObject- Parameters:
dataObject
- the data objectname
- the property namedefaultValue
- the default value if not found- Returns:
- the integer value or default
-
setDate
Set a date value.- Parameters:
dataObject
- the data objectname
- the property namedate
- the date in GMT time
-
getCalendar
Retrieve the getCalendar.- Parameters:
dataObject
- the data objectname
- the property name- Returns:
- the date value in GMT or null if not found
-
encodeDate
Encode the date in the standard iso8601 date format- Parameters:
date
- the date- Returns:
- the encoded date format
-
decodeDate
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
-