com.github.pukkaone.jarinvoke.plugin.CommandSearchScriptFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jar-invoke Show documentation
Show all versions of jar-invoke Show documentation
Elasticsearch plugin to invoke Java code
package com.github.pukkaone.jarinvoke.plugin;
import com.github.pukkaone.jarinvoke.Command;
import java.util.Map;
import lombok.RequiredArgsConstructor;
import org.elasticsearch.script.SearchScript;
import org.elasticsearch.search.lookup.SearchLookup;
/**
* Creates command search script factory.
*/
@RequiredArgsConstructor
public class CommandSearchScriptFactory implements SearchScript.Factory {
private final Command command;
@Override
public SearchScript.LeafFactory newFactory(Map params, SearchLookup lookup) {
return new CommandSearchScriptLeafFactory(command, params, lookup);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy