Uses of Interface
org.apache.camel.RouteNode

Packages that use RouteNode
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.processor.interceptor Helper classes for interceptors. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of RouteNode in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement RouteNode
 class DefaultRouteNode
          A default implementation of the RouteNode
 

Methods in org.apache.camel.impl that return RouteNode
 RouteNode DefaultUnitOfWork.getLastNode()
           
 RouteNode DefaultUnitOfWork.getSecondLastNode()
           
 

Methods in org.apache.camel.impl that return types with arguments of type RouteNode
 List<RouteNode> DefaultUnitOfWork.getNodes()
           
 

Methods in org.apache.camel.impl with parameters of type RouteNode
 void DefaultUnitOfWork.addTraced(RouteNode entry)
           
 

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

Methods in org.apache.camel.processor.interceptor with parameters of type RouteNode
protected  String DefaultTraceFormatter.getNodeMessage(RouteNode entry, Exchange exchange)
           
 

Uses of RouteNode in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return RouteNode
 RouteNode TraceableUnitOfWork.getLastNode()
          Gets the last node, is null if no last exists.
 RouteNode TraceableUnitOfWork.getSecondLastNode()
          Gets the 2nd last node, is null if no last exists.
 

Methods in org.apache.camel.spi that return types with arguments of type RouteNode
 List<RouteNode> TraceableUnitOfWork.getNodes()
          Gets the current list of nodes, representing the route path the current Exchange has currently taken.
 

Methods in org.apache.camel.spi with parameters of type RouteNode
 void TraceableUnitOfWork.addTraced(RouteNode entry)
          Adds the entry that was intercepted
 



Apache CAMEL