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 AggregateRouteNode
           
 class DefaultRouteNode
          A default implementation of the RouteNode
 class DoCatchRouteNode
           
 class DoFinallyRouteNode
           
 class OnCompletionRouteNode
           
 class OnExceptionRouteNode
           
 

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

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

Methods in org.apache.camel.impl with parameters of type RouteNode
 void DefaultTracedRouteNodes.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 TracedRouteNodes.getLastNode()
          Gets the last node, is null if no last exists.
 RouteNode TracedRouteNodes.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> TracedRouteNodes.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 TracedRouteNodes.addTraced(RouteNode entry)
          Adds the entry that was intercepted
 



Apache Camel