public String loadYaml()

in src/main/java/com/epam/gmp/service/yaml/YamlFreemarkerEngine.java [64:69]


    public String loadYaml(String templateName, YamlLoaderContext context) throws IOException, TemplateException {
        Template template = config.getTemplate(templateName);
        StringWriter out = new StringWriter();
        template.process(context.getParams(), out);
        return out.toString();
    }