Uses of Interface
org.apache.camel.spi.ExchangeFormatter

Packages that use ExchangeFormatter
org.apache.camel.component.log The Log Component uses Jakarta Commons Logging to log message exchanges. 
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
org.apache.camel.processor.interceptor Helper classes for interceptors. 
org.apache.camel.util Utility classes used by the core of Camel. 
 

Uses of ExchangeFormatter in org.apache.camel.component.log
 

Methods in org.apache.camel.component.log that return ExchangeFormatter
 ExchangeFormatter LogComponent.getExchangeFormatter()
           
 

Methods in org.apache.camel.component.log with parameters of type ExchangeFormatter
 void LogComponent.setExchangeFormatter(ExchangeFormatter exchangeFormatter)
          Sets a custom ExchangeFormatter to convert the Exchange to a String suitable for logging.
 

Uses of ExchangeFormatter in org.apache.camel.processor
 

Classes in org.apache.camel.processor that implement ExchangeFormatter
 class DefaultExchangeFormatter
          Default ExchangeFormatter that have fine grained options to configure what to include in the output.
 

Fields in org.apache.camel.processor declared as ExchangeFormatter
protected  ExchangeFormatter RedeliveryErrorHandler.exchangeFormatter
           
 

Methods in org.apache.camel.processor with parameters of type ExchangeFormatter
 void CamelLogger.setFormatter(ExchangeFormatter formatter)
          Deprecated.  
 

Constructors in org.apache.camel.processor with parameters of type ExchangeFormatter
CamelLogger(org.slf4j.Logger log, ExchangeFormatter formatter)
          Deprecated.  
CamelLogProcessor(CamelLogger log, ExchangeFormatter formatter)
           
 

Uses of ExchangeFormatter in org.apache.camel.processor.interceptor
 

Classes in org.apache.camel.processor.interceptor that implement ExchangeFormatter
 class TraceInterceptor
          An interceptor for debugging and tracing routes
 

Methods in org.apache.camel.processor.interceptor with parameters of type ExchangeFormatter
 CamelLogProcessor Tracer.getLogger(ExchangeFormatter formatter)
          Gets the logger to be used for tracers that can format and log a given exchange.
 

Uses of ExchangeFormatter in org.apache.camel.util
 

Methods in org.apache.camel.util with parameters of type ExchangeFormatter
static String MessageHelper.doDumpMessageHistoryStacktrace(Exchange exchange, ExchangeFormatter exchangeFormatter, boolean logStackTrace)
           
static String MessageHelper.dumpMessageHistoryStacktrace(Exchange exchange, ExchangeFormatter exchangeFormatter, boolean logStackTrace)
          Dumps the MessageHistory from the Exchange in a human readable format.
 



Apache Camel