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

pl.allegro.tech.embeddedelasticsearch.TemplatesDescription Maven / Gradle / Ivy

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