Interface PluginDataDao
- All Known Implementing Classes:
HibernatePluginDataDao
Deprecated, for removal: This API element is subject to removal in a future version.
Interface for storing and retrieving plugin data
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Same as callinggetAllPluginData()
, except that this does not load the plugin binary into memory.getPluginData
(String key) Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Same as callinggetPluginData(String)
, except that this does not load the plugin binary into memory.boolean
pluginDataExists
(String key) Deprecated, for removal: This API element is subject to removal in a future version.void
Deprecated, for removal: This API element is subject to removal in a future version.void
saveOrUpdate
(PluginData pluginData) Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Details
-
getPluginData
Deprecated, for removal: This API element is subject to removal in a future version. -
getPluginDataWithoutBinary
Deprecated, for removal: This API element is subject to removal in a future version.Same as callinggetPluginData(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 callinggetAllPluginData()
, except that this does not load the plugin binary into memory.- Since:
- 5.7
-
saveOrUpdate
Deprecated, for removal: This API element is subject to removal in a future version. -
remove
Deprecated, for removal: This API element is subject to removal in a future version. -
pluginDataExists
Deprecated, for removal: This API element is subject to removal in a future version.
-
PluginDataDao