Better explain Plugin (#20573)
Adds some javadoc with more explanation on how to extend Plugin and why we have all these `@Deprecated public final` `onModule` methods. Closes #20564
This commit is contained in:
parent
3771d80830
commit
92417c6ae3
|
@ -49,16 +49,23 @@ import java.util.Map;
|
||||||
import java.util.function.UnaryOperator;
|
import java.util.function.UnaryOperator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An extension point allowing to plug in custom functionality.
|
* An extension point allowing to plug in custom functionality. This class has a number of extension points that are available to all
|
||||||
* <p>
|
* plugins, in addition you can implement any of the following interfaces to further customize Elasticsearch:
|
||||||
* Implement any of these interfaces to extend Elasticsearch:
|
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>{@link ActionPlugin}
|
* <li>{@link ActionPlugin}
|
||||||
* <li>{@link AnalysisPlugin}
|
* <li>{@link AnalysisPlugin}
|
||||||
|
* <li>{@link ClusterPlugin}
|
||||||
|
* <li>{@link DiscoveryPlugin}
|
||||||
|
* <li>{@link IngestPlugin}
|
||||||
* <li>{@link MapperPlugin}
|
* <li>{@link MapperPlugin}
|
||||||
|
* <li>{@link NetworkPlugin}
|
||||||
|
* <li>{@link RepositoryPlugin}
|
||||||
* <li>{@link ScriptPlugin}
|
* <li>{@link ScriptPlugin}
|
||||||
* <li>{@link SearchPlugin}
|
* <li>{@link SearchPlugin}
|
||||||
* </ul>
|
* </ul>
|
||||||
|
* <p>In addition to extension points this class also declares some {@code @Deprecated} {@code public final void onModule} methods. These
|
||||||
|
* methods should cause any extensions of {@linkplain Plugin} that used the pre-5.x style extension syntax to fail to build and point the
|
||||||
|
* plugin author at the new extension syntax. We hope that these make the process of upgrading a plugin from 2.x to 5.x only mildly painful.
|
||||||
*/
|
*/
|
||||||
public abstract class Plugin {
|
public abstract class Plugin {
|
||||||
|
|
||||||
|
@ -141,63 +148,6 @@ public abstract class Plugin {
|
||||||
return UnaryOperator.identity();
|
return UnaryOperator.identity();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style guice index level extension point.
|
|
||||||
*
|
|
||||||
* @deprecated use #onIndexModule instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(IndexModule indexModule) {}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style guice settings extension point.
|
|
||||||
*
|
|
||||||
* @deprecated use #getSettings and #getSettingsFilter instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(SettingsModule settingsModule) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style guice scripting extension point.
|
|
||||||
*
|
|
||||||
* @deprecated implement {@link ScriptPlugin} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(ScriptModule module) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style analysis extension point.
|
|
||||||
*
|
|
||||||
* @deprecated implement {@link AnalysisPlugin} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(AnalysisModule module) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style action extension point.
|
|
||||||
*
|
|
||||||
* @deprecated implement {@link ActionPlugin} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(ActionModule module) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style action extension point.
|
|
||||||
*
|
|
||||||
* @deprecated implement {@link SearchPlugin} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(SearchModule module) {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Old-style action extension point.
|
|
||||||
*
|
|
||||||
* @deprecated implement {@link NetworkPlugin} instead
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public final void onModule(NetworkModule module) {}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the list of this plugin's custom thread pools, empty if
|
* Provides the list of this plugin's custom thread pools, empty if
|
||||||
* none.
|
* none.
|
||||||
|
@ -208,4 +158,68 @@ public abstract class Plugin {
|
||||||
public List<ExecutorBuilder<?>> getExecutorBuilders(Settings settings) {
|
public List<ExecutorBuilder<?>> getExecutorBuilders(Settings settings) {
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style guice index level extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated use #onIndexModule instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(IndexModule indexModule) {}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style guice settings extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated use #getSettings and #getSettingsFilter instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(SettingsModule settingsModule) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style guice scripting extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated implement {@link ScriptPlugin} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(ScriptModule module) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style analysis extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated implement {@link AnalysisPlugin} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(AnalysisModule module) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style action extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated implement {@link ActionPlugin} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(ActionModule module) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style action extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated implement {@link SearchPlugin} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(SearchModule module) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old-style action extension point. {@code @Deprecated} and {@code final} to act as a signpost for plugin authors upgrading
|
||||||
|
* from 2.x.
|
||||||
|
*
|
||||||
|
* @deprecated implement {@link NetworkPlugin} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public final void onModule(NetworkModule module) {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue