Package org.opensearch.plugins
Interface ExtensiblePlugin
public interface ExtensiblePlugin
An extension point for
Plugin
implementations to be themselves extensible.
This class provides a callback for extensible plugins to be informed of other plugins which extend them.
- Opensearch.api:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Extension point for external plugins to be extendable -
Method Summary
Modifier and TypeMethodDescriptiondefault void
Allow this plugin to load extensions from other plugins.
-
Method Details
-
loadExtensions
Allow this plugin to load extensions from other plugins.This method is called once only, after initializing this plugin and all plugins extending this plugin. It is called before any other methods on this Plugin instance are called.
-