Package oracle.stellent.ridc.model
Interface DataBinder
- All Known Implementing Classes:
DataBinderImpl
@Exported
public interface DataBinder
A DataBinder is the Data Model Object used for Content Server communication. It encapsulates a set of
local properties, a collection of result sets and option list values.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a file for a given file name.void
addFile
(String name, TransferFile file) Add a file for a given file namevoid
addOptionList
(String name, List<String> values) Add an option list with a given namevoid
addResultSet
(String name, DataResultSet resultSet) Add a result set with a given nameboolean
Check if there are filesgetFieldType
(String name) Retrieve the field type for a given field name.Retrieve all field namesRetrieve a file for a given file nameRetrieve all file namesShortcut forgetLocalData().get(name)
Retrieve the local datagetOptionList
(String name) Retrieve a specific option list by nameRetrieve all option list namesgetResultSet
(String name) Retrieve the result set by nameRetrieve all result set namesRetrieve a map representation of the result sets, indexed by result set name.void
merge
(DataBinder source) This will merge copies of all the data from the source binder into this binder, overwriting existing values and result sets, if they exist.void
Shortcut forgetLocalData().put(name,value)
void
removeFieldType
(String name) Remove the field type mapping for a given field namevoid
removeFile
(String name) Remove a file for a given file namevoid
removeOptionList
(String name) Remove an option list for a given namevoid
removeResultSet
(String name) Remove the result set for a given namevoid
setFieldType
(String name, String type) Set a field type for a given field name
-
Method Details
-
getLocalData
DataObject getLocalData()Retrieve the local data- Returns:
- the binder local data
-
getFieldType
Retrieve the field type for a given field name.- Parameters:
name
- the field name- Returns:
- the field type or null if no type is mapped to this property
-
setFieldType
Set a field type for a given field name- Parameters:
name
- the field nametype
- the new type
-
getFieldTypeNames
Collection<String> getFieldTypeNames()Retrieve all field names- Returns:
- a collection of the field names that have field type mappings
-
removeFieldType
Remove the field type mapping for a given field name- Parameters:
name
- the field name to remove from the mappings table
-
getFileNames
Collection<String> getFileNames()Retrieve all file names- Returns:
- a list of file names
-
getFile
Retrieve a file for a given file name- Parameters:
name
- the file name- Returns:
- the file stream or null if not found
-
addFile
Add a file for a given file name. Shortcut for calling:addFile (name, new TransferStream (file));
- Parameters:
name
- the file namefile
- the file object- Throws:
IOException
- if the file cannot be read- See Also:
-
addFile
Add a file for a given file name- Parameters:
name
- the file namefile
- the file stream
-
removeFile
Remove a file for a given file name- Parameters:
name
- the file name
-
containsFiles
boolean containsFiles()Check if there are files- Returns:
- true if their are any files attached to this data binder
-
getLocal
Shortcut forgetLocalData().get(name)
- Parameters:
name
- the local property name- Returns:
- the value or null if not found
-
putLocal
Shortcut forgetLocalData().put(name,value)
- Parameters:
name
- the local property namevalue
- the local property value
-
getResultSet
Retrieve the result set by name- Parameters:
name
- the result set name- Returns:
- the result set or null if not found
-
getResultSets
Map<String,DataResultSet> getResultSets()Retrieve a map representation of the result sets, indexed by result set name. Note: this is an unmodifiable map; add or removing of result sets is done through theaddResultSet(String, DataResultSet)
andremoveResultSet(String)
methods.- Returns:
- a non-null map of the available result sets, indexed by result set name
- See Also:
-
getResultSetNames
Collection<String> getResultSetNames()Retrieve all result set names- Returns:
- a collection of the available result set names
-
addResultSet
Add a result set with a given name- Parameters:
name
- the result set nameresultSet
- the result set
-
removeResultSet
Remove the result set for a given name- Parameters:
name
- the result set name to remove
-
getOptionList
Retrieve a specific option list by name- Parameters:
name
- the list name- Returns:
- the list values
-
getOptionListNames
Collection<String> getOptionListNames()Retrieve all option list names- Returns:
- the names of the available option lists
-
addOptionList
Add an option list with a given name- Parameters:
name
- the option list namevalues
- the values
-
removeOptionList
Remove an option list for a given name- Parameters:
name
- the option list name
-
merge
This will merge copies of all the data from the source binder into this binder, overwriting existing values and result sets, if they exist.- Parameters:
source
- the source databinder
-