querqy.elasticsearch.rewriterstore.DeleteRewriterAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querqy-elasticsearch Show documentation
Show all versions of querqy-elasticsearch Show documentation
Querqy library for query rewriting: Querqy for Elasticsearch
package querqy.elasticsearch.rewriterstore;
import org.elasticsearch.action.ActionType;
public class DeleteRewriterAction extends ActionType {
public static final String NAME = "cluster:admin/querqy/rewriter/delete";
public static final DeleteRewriterAction INSTANCE = new DeleteRewriterAction(NAME);
/**
* @param name The name of the action, must be unique across actions.
*/
protected DeleteRewriterAction(final String name) {
super(name, DeleteRewriterResponse::new);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy