Class ResultToStringTransformer

java.lang.Object
org.springframework.integration.xml.transformer.ResultToStringTransformer
All Implemented Interfaces:
ResultTransformer

public class ResultToStringTransformer
extends java.lang.Object
implements ResultTransformer
Converts the passed Result to an instance of String. Supports StringResult and DOMResult
  • Constructor Summary

    Constructors 
    Constructor Description
    ResultToStringTransformer()  
    ResultToStringTransformer​(javax.xml.transform.TransformerFactory transformerFactory)
    Construct an instance based on the provided TransformerFactory.
  • Method Summary

    Modifier and Type Method Description
    void setOutputProperties​(java.util.Properties outputProperties)  
    java.lang.Object transformResult​(javax.xml.transform.Result result)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ResultToStringTransformer

      public ResultToStringTransformer()
    • ResultToStringTransformer

      public ResultToStringTransformer​(javax.xml.transform.TransformerFactory transformerFactory)
      Construct an instance based on the provided TransformerFactory.
      Parameters:
      transformerFactory - the TransformerFactory to use.
      Since:
      4.3.19
  • Method Details