Class XmlDocumentPostProcessor
- java.lang.Object
-
- com.aquima.interactions.framework.renderer.document.XmlDocumentPostProcessor
-
- All Implemented Interfaces:
IXmlPostProcessor
public class XmlDocumentPostProcessor extends Object implements IXmlPostProcessor
Post processor for document xml rendering. This class does not do any post processing, it only logs the result xml when logging in debug mode.- Since:
- 7.0
- Author:
- Jon van Leuven
-
-
Constructor Summary
Constructors Constructor Description XmlDocumentPostProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IXmlElement
postProcess(IXmlRendererContext ctx, ICompositeElement element, IXmlElement currentResult)
This method will be invoked to perform the post-processing.
-
-
-
Method Detail
-
postProcess
public IXmlElement postProcess(IXmlRendererContext ctx, ICompositeElement element, IXmlElement currentResult)
Description copied from interface:IXmlPostProcessor
This method will be invoked to perform the post-processing.- Specified by:
postProcess
in interfaceIXmlPostProcessor
- Parameters:
ctx
- The context for the renderers.element
- The page or document element that was converted to XML.currentResult
- The XML element for the page.- Returns:
- XML element after post-processing.
-
-