Uses of Interface
org.apache.camel.Route

Packages that use Route
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.management Camel JMX export services. 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of Route in org.apache.camel
 

Methods in org.apache.camel that return types with arguments of type Route
 List<Route> CamelContext.getRoutes()
          Returns the current routes in this context
 

Uses of Route in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Route
 class DefaultRoute
          A Route defines the processing used on an inbound message exchange from a specific Endpoint within a CamelContext
 class EventDrivenConsumerRoute
          A DefaultRoute which starts with an Event Driven Consumer
 

Methods in org.apache.camel.impl that return types with arguments of type Route
 Collection<Route> RouteService.getRoutes()
           
 List<Route> DefaultCamelContext.getRoutes()
           
 

Method parameters in org.apache.camel.impl with type arguments of type Route
 void DelegateLifecycleStrategy.onRoutesAdd(Collection<Route> routes)
           
 void DefaultLifecycleStrategy.onRoutesAdd(Collection<Route> routes)
           
 void DefaultCamelContext.setRoutes(List<Route> routes)
           
 

Constructor parameters in org.apache.camel.impl with type arguments of type Route
DefaultRouteContext(RouteDefinition route, FromDefinition from, Collection<Route> routes)
           
RouteService(DefaultCamelContext camelContext, RouteDefinition routeDefinition, List<RouteContext> routeContexts, Collection<Route> routes)
           
 

Uses of Route in org.apache.camel.management
 

Methods in org.apache.camel.management that return Route
 Route ManagedRoute.getRoute()
           
 

Method parameters in org.apache.camel.management with type arguments of type Route
 void InstrumentationLifecycleStrategy.onRoutesAdd(Collection<Route> routes)
           
 

Uses of Route in org.apache.camel.model
 

Method parameters in org.apache.camel.model with type arguments of type Route
 List<RouteContext> RouteDefinition.addRoutes(CamelContext context, Collection<Route> routes)
           
protected  RouteContext RouteDefinition.addRoutes(Collection<Route> routes, FromDefinition fromType)
           
 void ProcessorDefinition.addRoutes(RouteContext routeContext, Collection<Route> routes)
           
 void OnExceptionDefinition.addRoutes(RouteContext routeContext, Collection<Route> routes)
           
 

Uses of Route in org.apache.camel.spi
 

Method parameters in org.apache.camel.spi with type arguments of type Route
 void LifecycleStrategy.onRoutesAdd(Collection<Route> routes)
          Notification on adding Route(s).
 



Apache CAMEL