Uses of Interface
org.apache.camel.model.ModelCamelContext

Packages that use ModelCamelContext
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.management.mbean Camel management JMX MBeans 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of ModelCamelContext in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return ModelCamelContext
protected  ModelCamelContext RouteBuilder.createContainer()
          Factory method
 ModelCamelContext RouteBuilder.getContext()
           
 ModelCamelContext BuilderSupport.getContext()
           
 

Methods in org.apache.camel.builder with parameters of type ModelCamelContext
 RoutesDefinition RouteBuilder.configureRoutes(ModelCamelContext context)
          Configures the routes
protected static ErrorHandlerFactory ErrorHandlerBuilderRef.lookupErrorHandlerBuilder(ModelCamelContext camelContext)
           
 void BuilderSupport.setContext(ModelCamelContext context)
           
 

Uses of ModelCamelContext in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement ModelCamelContext
 class DefaultCamelContext
          Represents the context used to configure routes and the policies to use.
 

Uses of ModelCamelContext in org.apache.camel.management.mbean
 

Fields in org.apache.camel.management.mbean declared as ModelCamelContext
protected  ModelCamelContext ManagedRoute.context
           
 

Constructors in org.apache.camel.management.mbean with parameters of type ModelCamelContext
ManagedCamelContext(ModelCamelContext context)
           
ManagedRoute(ModelCamelContext context, Route route)
           
ManagedSuspendableRoute(ModelCamelContext context, Route route)
           
 

Uses of ModelCamelContext in org.apache.camel.model
 

Methods in org.apache.camel.model that return ModelCamelContext
 ModelCamelContext RoutesDefinition.getCamelContext()
           
 

Methods in org.apache.camel.model with parameters of type ModelCamelContext
 List<RouteContext> RouteDefinition.addRoutes(ModelCamelContext camelContext, Collection<Route> routes)
           
 RouteDefinition RouteDefinition.adviceWith(ModelCamelContext camelContext, RouteBuilder builder)
          Advices this route with the route builder.
 void RouteDefinition.prepare(ModelCamelContext context)
          Prepares the route definition to be ready to be added to CamelContext
static void RouteDefinitionHelper.prepareRoute(ModelCamelContext context, RouteDefinition route)
          Prepares the route.
static void RouteDefinitionHelper.prepareRoute(ModelCamelContext context, RouteDefinition route, List<OnExceptionDefinition> onExceptions, List<InterceptDefinition> intercepts, List<InterceptFromDefinition> interceptFromDefinitions, List<InterceptSendToEndpointDefinition> interceptSendToEndpointDefinitions, List<OnCompletionDefinition> onCompletions)
          Prepares the route which supports context scoped features such as onException, interceptors and onCompletions

This method does not mark the route as prepared afterwards.

 void RoutesDefinition.setCamelContext(ModelCamelContext camelContext)
           
 



Apache CAMEL