Interface TemplateEngine
- All Known Implementing Classes:
FreeMarkerTemplateEngine
,PebbleTemplateEngine
,ThymeleafTemplateEngine
public interface TemplateEngine
The Interface TemplateEngine.
Created: 2016. 1. 9.
-
Method Details
-
process
Executes template, using the data-model provided, writing the generated output to the suppliedWriter
.- Parameters:
templateName
- the template nameactivity
- the activity- Throws:
TemplateEngineProcessException
- if an exception occurs during template processing
-
process
void process(String templateSource, String contentType, Activity activity) throws TemplateEngineProcessException Executes template, using the data-model provided, writing the generated output to the suppliedWriter
.- Parameters:
templateSource
- the template sourcecontentType
- the content typeactivity
- the activity- Throws:
TemplateEngineProcessException
- if an exception occurs during template processing
-