Package com.griddynamics.genesis.notification.template

Examples of com.griddynamics.genesis.notification.template.TemplateEngine


        return RemoteGateway.apply(new SpringBasedEmailService(emailSenderConfiguration(), getTemplateEngine()), "Email notification sender");
    }

    public TemplateEngine getTemplateEngine() {
        String templateFolder = getConfig().get(NotificationPluginConfig.templateFolder);
        TemplateEngine templateEngine;
        templateEngine = new VelocityTemplateEngine(templateFolder);
        return templateEngine;
    }
View Full Code Here

TOP

Related Classes of com.griddynamics.genesis.notification.template.TemplateEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.