...
The JobPlugin class and the PluginInterface are quite similar, see the StepLoader paragraph above for more information.
DatabaseMeta
Since the creation of DatabaseMeta is now handled by the PluginRegistry as well, we can say a few words about the migration of your code.
Here are a few of the methods that are now missing from DatabaseMeta:
- getDatabaseTypeDescLong() -> You need to look up the PluginInterface for this database in the plugin registry with the pluginId. -> plugin = registry.getPlugin(DatabasePluginType.class, pluginId); With this you can determine the name (previous long description)
- getDatabaseTypeDesc() --> This is in fact the plugin ID of the DatabaseMeta object.
Examples from the field
Job entry example
...