Interface PluginDataDao
- All Known Implementing Classes:
HibernatePluginDataDao
public interface PluginDataDao
Interface for storing and retrieving plugin data
-
Method Summary
Modifier and TypeMethodDescriptionSame as callinggetAllPluginData(), except that this does not load the plugin binary into memory.getPluginData(String key) Same as callinggetPluginData(String), except that this does not load the plugin binary into memory.booleanpluginDataExists(String key) voidvoidsaveOrUpdate(PluginData pluginData)
-
Method Details
-
getPluginData
-
getPluginDataWithoutBinary
Same as callinggetPluginData(String), except that this does not load the plugin binary into memory.- Since:
- 5.7
-
getAllPluginData
Iterator<PluginData> getAllPluginData() -
getAllPluginDataWithoutBinary
Iterator<PluginDataWithoutBinary> getAllPluginDataWithoutBinary()Same as callinggetAllPluginData(), except that this does not load the plugin binary into memory.- Since:
- 5.7
-
saveOrUpdate
-
remove
-
pluginDataExists
-