Uses of Interface
org.apache.camel.CamelContext

Packages that use CamelContext
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.component.bean The Bean Component which will look up the bean name in the Spring ApplicationContext and use that to dispatch messages to a POJO 
org.apache.camel.component.direct The Direct Component which synchronously invokes all the consumers when a producer sends an exchange to the endpoint. 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.component.jmx The JMX Component for monitoring JMX Attributes uisng a CounterMonitor. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.management   
org.apache.camel.model Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
org.apache.camel.util Utility classes used by the core of Camel and useful for Camel component developers 
org.apache.camel.view Helper class to help with the Visualisation of Routes 
 

Uses of CamelContext in org.apache.camel
 

Methods in org.apache.camel that return CamelContext
 CamelContext Component.getCamelContext()
          Returns the context
 CamelContext CamelTemplate.getContext()
           
 CamelContext Exchange.getContext()
          Returns the container so that a processor can resolve endpoints from URIs
 CamelContext Endpoint.getContext()
          Returns the context which created the endpoint
 

Methods in org.apache.camel with parameters of type CamelContext
 void LifecycleStrategy.onContextCreate(CamelContext context)
          Notification on adding a CamelContext.
 void LifecycleStrategy.onServiceAdd(CamelContext context, Service service)
          Notification on adding a Route.
 void CamelContextAware.setCamelContext(CamelContext camelContext)
          Injects the CamelContext
 void Component.setCamelContext(CamelContext context)
          The CamelContext is injected into the component when it is added to it
 

Constructors in org.apache.camel with parameters of type CamelContext
CamelTemplate(CamelContext context)
           
CamelTemplate(CamelContext context, Endpoint defaultEndpoint)
           
 

Uses of CamelContext in org.apache.camel.builder
 

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

Methods in org.apache.camel.builder with parameters of type CamelContext
 void BuilderSupport.setContext(CamelContext context)
           
 

Constructors in org.apache.camel.builder with parameters of type CamelContext
BuilderSupport(CamelContext context)
           
RouteBuilder(CamelContext context)
           
 

Uses of CamelContext in org.apache.camel.component.bean
 

Methods in org.apache.camel.component.bean with parameters of type CamelContext
static ParameterMappingStrategy BeanProcessor.createParameterMappingStrategy(CamelContext camelContext)
           
 

Constructors in org.apache.camel.component.bean with parameters of type CamelContext
BeanExchange(CamelContext context)
           
BeanProcessor(Object pojo, CamelContext camelContext)
           
 

Uses of CamelContext in org.apache.camel.component.direct
 

Methods in org.apache.camel.component.direct that return CamelContext
 CamelContext DirectComponent.getCamelContext()
           
 

Methods in org.apache.camel.component.direct with parameters of type CamelContext
 void DirectComponent.setCamelContext(CamelContext context)
           
 

Uses of CamelContext in org.apache.camel.component.file
 

Constructors in org.apache.camel.component.file with parameters of type CamelContext
FileComponent(CamelContext context)
           
FileExchange(CamelContext camelContext, File file)
           
 

Uses of CamelContext in org.apache.camel.component.jmx
 

Constructors in org.apache.camel.component.jmx with parameters of type CamelContext
JMXComponent(CamelContext context)
           
JMXExchange(CamelContext camelContext, Notification notification)
          Constructor
 

Uses of CamelContext in org.apache.camel.impl
 

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

Fields in org.apache.camel.impl declared as CamelContext
protected  CamelContext DefaultExchange.context
           
 

Methods in org.apache.camel.impl that return CamelContext
 CamelContext DefaultComponent.getCamelContext()
           
 CamelContext RouteContext.getCamelContext()
           
 CamelContext DefaultExchange.getContext()
           
 CamelContext DefaultEndpoint.getContext()
           
 

Methods in org.apache.camel.impl with parameters of type CamelContext
protected  Language DefaultLanguageResolver.noSpecificLanguageFound(String name, CamelContext context)
           
 void DefaultLifecycleStrategy.onContextCreate(CamelContext context)
           
 void DefaultLifecycleStrategy.onServiceAdd(CamelContext context, Service service)
           
 Component<E> DefaultComponentResolver.resolveComponent(String name, CamelContext context)
           
 Language DefaultLanguageResolver.resolveLanguage(String name, CamelContext context)
           
 void DefaultComponent.setCamelContext(CamelContext context)
           
 

Constructors in org.apache.camel.impl with parameters of type CamelContext
DefaultComponent(CamelContext context)
           
DefaultEndpoint(String endpointUri, CamelContext context)
           
DefaultExchange(CamelContext context)
           
ProcessorEndpoint(String endpointUri, CamelContext context, Processor processor)
           
 

Uses of CamelContext in org.apache.camel.management
 

Methods in org.apache.camel.management that return CamelContext
 CamelContext InstrumentationAgentImpl.getCamelContext()
           
 

Methods in org.apache.camel.management with parameters of type CamelContext
protected  String CamelNamingStrategy.getContextId(CamelContext context)
           
 ObjectName CamelNamingStrategy.getObjectName(CamelContext context)
          Implements the naming strategy for a CamelContext.
 ObjectName CamelNamingStrategy.getObjectName(CamelContext context, ManagedService mbean)
          Implements the naming strategy for a Service.
 void InstrumentationLifecycleStrategy.onContextCreate(CamelContext context)
           
 void InstrumentationLifecycleStrategy.onServiceAdd(CamelContext context, Service service)
           
 void InstrumentationAgentImpl.setCamelContext(CamelContext camelContext)
           
 

Uses of CamelContext in org.apache.camel.model
 

Methods in org.apache.camel.model that return CamelContext
 CamelContext RouteType.getCamelContext()
           
 CamelContext RoutesType.getCamelContext()
           
 

Methods in org.apache.camel.model with parameters of type CamelContext
 void RouteType.addRoutes(CamelContext context)
           
 void RouteType.addRoutes(CamelContext context, Collection<Route> routes)
           
 void RouteType.setCamelContext(CamelContext camelContext)
           
 void RoutesType.setCamelContext(CamelContext camelContext)
           
 

Uses of CamelContext in org.apache.camel.spi
 

Methods in org.apache.camel.spi with parameters of type CamelContext
 Component<E> ComponentResolver.resolveComponent(String name, CamelContext context)
          Attempts to resolve the component for the given URI
 Language LanguageResolver.resolveLanguage(String name, CamelContext context)
           
 

Uses of CamelContext in org.apache.camel.util
 

Methods in org.apache.camel.util with parameters of type CamelContext
static Endpoint CamelContextHelper.getMandatoryEndpoint(CamelContext camelContext, String uri)
          Returns the mandatory endpoint for the given URI or the NoSuchEndpointException is thrown
 

Uses of CamelContext in org.apache.camel.view
 

Methods in org.apache.camel.view with parameters of type CamelContext
 void RouteDotGenerator.drawRoutes(CamelContext context)
           
protected  void RouteDotGenerator.generateFile(PrintWriter writer, CamelContext context)
           
 



Copyright © 2007 Apache Software Foundation. All Rights Reserved.