Uses of Interface
org.apache.camel.RoutesBuilder

Packages that use RoutesBuilder
org.apache.camel The core Camel API. 
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of RoutesBuilder in org.apache.camel
 

Methods in org.apache.camel with parameters of type RoutesBuilder
 void CamelContext.addRoutes(RoutesBuilder builder)
          Adds a collection of routes to this context using the given builder to build them.
 

Uses of RoutesBuilder in org.apache.camel.builder
 

Classes in org.apache.camel.builder that implement RoutesBuilder
 class AdviceWithRouteBuilder
          A RouteBuilder which has extended capabilities when using the advice with feature.
 class RouteBuilder
          A Java DSL which is used to build DefaultRoute instances in a CamelContext for smart routing.
 

Methods in org.apache.camel.builder with parameters of type RoutesBuilder
protected  void RouteBuilder.addRoutes(RoutesBuilder routes)
          Deprecated. will be removed in Camel 3.0. Instead use includeRoutes instead.
 void RouteBuilder.includeRoutes(RoutesBuilder routes)
          Includes the routes from the build to this builder.
 

Uses of RoutesBuilder in org.apache.camel.impl
 

Methods in org.apache.camel.impl with parameters of type RoutesBuilder
 void DefaultCamelContext.addRoutes(RoutesBuilder builder)
           
 

Uses of RoutesBuilder in org.apache.camel.model
 

Methods in org.apache.camel.model that return RoutesBuilder
 RoutesBuilder RouteBuilderDefinition.createRoutes(CamelContext camelContext)
           
 



Apache Camel