Package com.gainmatrix.lib.template

Examples of com.gainmatrix.lib.template.TextTemplate


            LOGGER.debug("Message [" + name + "] is not sent because mailing is off");
            return;
        }

        // Load template
        TextTemplate textTemplate;

        try {
            textTemplate = textTemplateFactory.getTemplate(name, locale);
        } catch (TextTemplateException e) {
            throw new SystemIntegrityException("Template [" + name + "] is not found", e);
        }

        // Prepare model
        Map<String, Object> model = ImmutableMap.<String, Object>builder()
            .put("locale", locale)
            .put("timezone", timezone)
            .putAll(attributes)
            .build();

        // Render template
        String text;

        try {
            text = textTemplate.render(model);
        } catch (TextTemplateException e) {
            throw new SystemIntegrityException("Template [" + name + "] could not be rendered", e);
        }

        // Load subject
View Full Code Here

TOP

Related Classes of com.gainmatrix.lib.template.TextTemplate

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.