io.searchbox.indices.template.DeleteTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jest-common Show documentation
Show all versions of jest-common Show documentation
ElasticSearch Java REST client - shared library package
package io.searchbox.indices.template;
/**
* @author asierdelpozo
* @author cihat keser
*/
public class DeleteTemplate extends TemplateAction {
protected DeleteTemplate(Builder builder) {
super(builder);
setURI(buildURI());
}
@Override
public String getRestMethodName() {
return "DELETE";
}
public static class Builder extends TemplateAction.Builder {
public Builder(String template) {
super(template);
}
@Override
public DeleteTemplate build() {
return new DeleteTemplate(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy