All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pukkaone.jarinvoke.plugin.CommandSearchScriptFactory Maven / Gradle / Ivy

There is a newer version: 6.5.4-1
Show newest version
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