...
IGB has several "extension points" designed specifically for plugins. These are interfaces or abstract classes that
are implemented or extended by plugin versions. Usually the Activator for the plugin will register the plugin as a
service in the start() method:
bundleContext.registerService(<extension point>.class.getName(), <plugin implementation>, new Properties());
The current extension points are:
...