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
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Each data source consists of a list of items.
  • Field Details

  • Method Details

    • 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 a JSONObject with the following key-value pairs (both strings):
      • TEXT The text that is shown to the user.
      • VALUE The text that is sent when the form is submitted.
      • title (optional) The text that is used as the HTML title attribute.
      Returns:
      A SerializableJSONArray with the items provided by the data source plugin.