public interface TemplateRenderer
Modifier and Type | Method and Description |
---|---|
Streamable |
render(String templateProviderPluginKey,
String templateName,
Map<String,Object> data)
Render a plugin-provided template as a Streamable.
|
Streamable |
render(String templateProviderPluginKey,
String templateName,
Map<String,Object> data,
Map<String,Object> injectedData)
Render a plugin-provided template as a Streamable.
|
void |
renderTo(Appendable appendable,
String templateProviderPluginKey,
String templateName,
Map<String,Object> data)
Render a plugin-provided template to a Writer.
|
void |
renderTo(Appendable appendable,
String templateProviderPluginKey,
String templateName,
Map<String,Object> data,
Map<String,Object> injectedData)
Render a plugin-provided template to a Writer.
|
void renderTo(Appendable appendable, String templateProviderPluginKey, String templateName, Map<String,Object> data) throws TemplateRenderingException
appendable
- the buffer to write the template output intotemplateProviderPluginKey
- the plugin that provides the template as a resourcetemplateName
- the name of the plugin resource that contains the templatedata
- the data to pass into the templateTemplateRenderingException
- if something goes wrong during the renderingStreamable render(String templateProviderPluginKey, String templateName, Map<String,Object> data) throws TemplateRenderingException
templateProviderPluginKey
- the plugin that provides the template as a resourcetemplateName
- the name of the plugin resource that contains the templatedata
- the data to pass into the templateTemplateRenderingException
- if something goes wrong during the renderingvoid renderTo(Appendable appendable, String templateProviderPluginKey, String templateName, Map<String,Object> data, Map<String,Object> injectedData) throws TemplateRenderingException
appendable
- the buffer to write the template output intotemplateProviderPluginKey
- the plugin that provides the template as a resourcetemplateName
- the name of the plugin resource that contains the templatedata
- the data to pass into the templateinjectedData
- injected data to pass into the templateTemplateRenderingException
- if something goes wrong during the renderingStreamable render(String templateProviderPluginKey, String templateName, Map<String,Object> data, Map<String,Object> injectedData) throws TemplateRenderingException
templateProviderPluginKey
- the plugin that provides the template as a resourcetemplateName
- the name of the plugin resource that contains the templatedata
- the data to pass into the templateinjectedData
- injected data to pass into the templateThe
- Streamable rendered resultTemplateRenderingException
- if something goes wrong during the renderingCopyright © 2003–2020 Atlassian. All rights reserved.