Interface PluginDataDao

All Known Implementing Classes:
HibernatePluginDataDao

@Deprecated(forRemoval=true) public interface PluginDataDao
Deprecated, for removal: This API element is subject to removal in a future version.
since 10.1 replaced by PluginDataDao
Interface for storing and retrieving plugin data
  • Method Details

    • getPluginData

      PluginData getPluginData(String key)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • getPluginDataWithoutBinary

      PluginDataWithoutBinary getPluginDataWithoutBinary(String key)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Same as calling getPluginData(String), except that this does not load the plugin binary into memory.
      Since:
      5.7
    • getAllPluginData

      Iterator<PluginData> getAllPluginData()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • getAllPluginDataWithoutBinary

      Iterator<PluginDataWithoutBinary> getAllPluginDataWithoutBinary()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Same as calling getAllPluginData(), except that this does not load the plugin binary into memory.
      Since:
      5.7
    • saveOrUpdate

      void saveOrUpdate(PluginData pluginData)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • remove

      void remove(String key)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • pluginDataExists

      boolean pluginDataExists(String key)
      Deprecated, for removal: This API element is subject to removal in a future version.