Class WikiTemplateHandler
- java.lang.Object
-
- com.atlassian.confluence.pages.templates.WikiTemplateHandler
-
- All Implemented Interfaces:
TemplateHandler
public class WikiTemplateHandler extends Object implements TemplateHandler
-
-
Constructor Summary
Constructors Constructor Description WikiTemplateHandler(EditorFormatService editorFormatService, SpaceManagerInternal spaceManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgenerateEditorFormat(PageTemplate template, List<? extends Variable> variables, String spaceKey)List<Variable>getTemplateVariables(PageTemplate template)StringinsertVariables(Reader templateXml, List<? extends Variable> variables)Insert specified variables into the template XML before returning it.
-
-
-
Constructor Detail
-
WikiTemplateHandler
public WikiTemplateHandler(EditorFormatService editorFormatService, SpaceManagerInternal spaceManager)
-
-
Method Detail
-
getTemplateVariables
public List<Variable> getTemplateVariables(PageTemplate template)
- Specified by:
getTemplateVariablesin interfaceTemplateHandler
-
insertVariables
public String insertVariables(Reader templateXml, List<? extends Variable> variables)
Description copied from interface:TemplateHandlerInsert specified variables into the template XML before returning it. If an <at:var> is encountered in the XML that doesn't have a value specified, it will be replaced with empty string.- Specified by:
insertVariablesin interfaceTemplateHandler- Parameters:
templateXml- template XMLvariables- the template variables- Returns:
- the updated template XML with variables replaced with actual values
-
generateEditorFormat
public String generateEditorFormat(PageTemplate template, List<? extends Variable> variables, String spaceKey) throws XhtmlException
- Specified by:
generateEditorFormatin interfaceTemplateHandler- Throws:
XhtmlException
-
-