Interface IPluginDataSourceRetVal
-
- All Superinterfaces:
IPluginReturnValue
,Serializable
- All Known Implementing Classes:
PluginDataSourceRetVal
public interface IPluginDataSourceRetVal extends IPluginReturnValue, Serializable
Interface for the return value of data source plugins.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SerializableJSONArray
getJSONArray()
Each data source consists of a list of items.
-
-
-
Field Detail
-
TEXT
static final String TEXT
- See Also:
- Constant Field Values
-
VALUE
static final String VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getJSONArray
SerializableJSONArray getJSONArray()
Each data source consists of a list of items. This is the getter for the list of items provided by the corresponding data source plugin. Each item must be aJSONObject
with the following key-value pairs (both strings):- Returns:
- A
SerializableJSONArray
with the items provided by the data source plugin.
-
-