
org.codelibs.elasticsearch.handlebars.HandlebarsPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-lang-handlebars Show documentation
Show all versions of elasticsearch-lang-handlebars Show documentation
This plugin adds Handlebars language to Elasticsearch.
The newest version!
package org.codelibs.elasticsearch.handlebars;
import org.codelibs.elasticsearch.handlebars.service.HandlebarsScriptEngineService;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.script.ScriptModule;
public class HandlebarsPlugin extends Plugin {
@Override
public String name() {
return "lang-handlebars";
}
@Override
public String description() {
return "This plugin provides Handlebars language as a script.";
}
public void onModule(final ScriptModule module) {
module.addScriptEngine(HandlebarsScriptEngineService.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy