org.apache.camel.spi
Interface Container


public interface Container

The Container interface defines an object that can be used to customize all Camel CONTEXTS created.

A container can be used to globally intercept and customize Camel CONTEXTS, by registering a LifecycleStrategy, a ProcessorFactory, or any other SPI object.


Nested Class Summary
static class Container.Instance
          The Instance class holds a Container singleton.
 
Method Summary
 void manage(CamelContext camelContext)
          Called by Camel when a CamelContext has been created.
 

Method Detail

manage

void manage(CamelContext camelContext)
Called by Camel when a CamelContext has been created.

Parameters:
camelContext - the newly created CamelContext


Apache Camel