
pl.allegro.tech.embeddedelasticsearch.TemplatesDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-elasticsearch Show documentation
Show all versions of embedded-elasticsearch Show documentation
Tool that ease up creation of integration tests with Elasticsearch
package pl.allegro.tech.embeddedelasticsearch;
import java.util.Collection;
import java.util.Map;
public class TemplatesDescription {
private final Map templates;
TemplatesDescription(Map templates) {
this.templates = templates;
}
Collection getTemplatesNames() {
return templates.keySet();
}
String getTemplateSettings(String templateName) {
return templates.get(templateName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy