Uses of Class
org.apache.camel.impl.DefaultComponent

Packages that use DefaultComponent
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.binding The Binding Component which is a way of wrapping an Endpoint in a contract; such as a Data Format, a Content Enricher or validation step. 
org.apache.camel.component.browse The Browse Component which is a simple in memory component which maintains a list of all message exchanges which can be useful for debugging, tooling or visualistion. 
org.apache.camel.component.controlbus The Control Bus Component which allows to manage Camel at runtime. 
org.apache.camel.component.dataformat The DataFormat Component allows to use Data Format as a Camel Component. 
org.apache.camel.component.dataset A DataSet Endpoint for testing of endpoints using defined DataSets 
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.directvm The Direct VM Component which synchronously invokes the consumer 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.language The Language Component to send messages to language endpoints executing the script. 
org.apache.camel.component.log The Log Component uses Jakarta Commons Logging to log message exchanges. 
org.apache.camel.component.mock The Mock Component which is used for testing of routing and mediation rules. 
org.apache.camel.component.properties The Properties Component for lookup of property placeholders for endpoint URI. 
org.apache.camel.component.ref The Ref Component for lookup of existing endpoints bound in the Registry
org.apache.camel.component.seda The SEDA Component for asynchronous SEDA exchanges on a BlockingQueue within a single CamelContext 
org.apache.camel.component.stub The Stub Component which is used for stubbing endpoints. 
org.apache.camel.component.test A Test Endpoint for Pattern Based Testing 
org.apache.camel.component.timer The Timer Component extends the POJO component to provide a simple timer 
org.apache.camel.component.validator The Validator Component for validating XML against some schema 
org.apache.camel.component.vm The VM Component for asynchronous SEDA exchanges on a BlockingQueue within the current JVM; so across CamelContext instances. 
org.apache.camel.component.xslt The XSLT Component for transforming messages with XSLT 
org.apache.camel.impl Default implementation classes for Camel Core 
 

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

Subclasses of DefaultComponent in org.apache.camel.component.bean
 class BeanComponent
          The Bean Component will look up the URI in the Registry and use that to handle message dispatching.
 class ClassComponent
          The Class Component will create an instance of the class from the Registry and use that to handle message dispatching.
 

Uses of DefaultComponent in org.apache.camel.component.binding
 

Subclasses of DefaultComponent in org.apache.camel.component.binding
 class BindingComponent
          A composite Component which creates a BindingEndpoint from a configured Binding instance and using the optional BindingComponent.setUriPrefix(String) and BindingComponent.setUriPostfix(String) to create the underlying endpoint from the remaining URI
 class BindingNameComponent
          A Binding component using the URI form binding:nameOfBinding:endpointURI to extract the binding name which is then resolved from the registry and used to create a BindingEndpoint from the underlying Endpoint
 

Uses of DefaultComponent in org.apache.camel.component.browse
 

Subclasses of DefaultComponent in org.apache.camel.component.browse
 class BrowseComponent
          The browse component.
 

Uses of DefaultComponent in org.apache.camel.component.controlbus
 

Subclasses of DefaultComponent in org.apache.camel.component.controlbus
 class ControlBusComponent
          The control bus component.
 

Uses of DefaultComponent in org.apache.camel.component.dataformat
 

Subclasses of DefaultComponent in org.apache.camel.component.dataformat
 class DataFormatComponent
           
 

Uses of DefaultComponent in org.apache.camel.component.dataset
 

Subclasses of DefaultComponent in org.apache.camel.component.dataset
 class DataSetComponent
          Component for DataSet.
 

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

Subclasses of DefaultComponent in org.apache.camel.component.direct
 class DirectComponent
          Represents the component that manages DirectEndpoint.
 

Uses of DefaultComponent in org.apache.camel.component.directvm
 

Subclasses of DefaultComponent in org.apache.camel.component.directvm
 class DirectVmComponent
          Represents the component that manages DirectVmEndpoint.
 

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

Subclasses of DefaultComponent in org.apache.camel.component.file
 class FileComponent
          File component.
 class GenericFileComponent<T>
          Base class file component.
 

Uses of DefaultComponent in org.apache.camel.component.language
 

Subclasses of DefaultComponent in org.apache.camel.component.language
 class LanguageComponent
          The language component to send Exchanges to a given language and have the script being executed.
 

Uses of DefaultComponent in org.apache.camel.component.log
 

Subclasses of DefaultComponent in org.apache.camel.component.log
 class LogComponent
          The Log Component to log message exchanges to the underlying logging mechanism.
 

Uses of DefaultComponent in org.apache.camel.component.mock
 

Subclasses of DefaultComponent in org.apache.camel.component.mock
 class MockComponent
          A factory of MockEndpoint instances
 

Uses of DefaultComponent in org.apache.camel.component.properties
 

Subclasses of DefaultComponent in org.apache.camel.component.properties
 class PropertiesComponent
          The properties component.
 

Uses of DefaultComponent in org.apache.camel.component.ref
 

Subclasses of DefaultComponent in org.apache.camel.component.ref
 class RefComponent
          Component for lookup of existing endpoints bound in the Registry.
 

Uses of DefaultComponent in org.apache.camel.component.seda
 

Subclasses of DefaultComponent in org.apache.camel.component.seda
 class SedaComponent
          An implementation of the SEDA components for asynchronous SEDA exchanges on a BlockingQueue within a CamelContext
 

Uses of DefaultComponent in org.apache.camel.component.stub
 

Subclasses of DefaultComponent in org.apache.camel.component.stub
 class StubComponent
          Allows you to easily stub out a middleware transport by prefixing the URI with "stub:" which is handy for testing out routes, or isolating bits of middleware.
 

Uses of DefaultComponent in org.apache.camel.component.test
 

Subclasses of DefaultComponent in org.apache.camel.component.test
 class TestComponent
          Test Component.
 

Uses of DefaultComponent in org.apache.camel.component.timer
 

Subclasses of DefaultComponent in org.apache.camel.component.timer
 class TimerComponent
          Represents the component that manages TimerEndpoint.
 

Uses of DefaultComponent in org.apache.camel.component.validator
 

Subclasses of DefaultComponent in org.apache.camel.component.validator
 class ValidatorComponent
          The Validator Component for validating XML against some schema
 

Uses of DefaultComponent in org.apache.camel.component.vm
 

Subclasses of DefaultComponent in org.apache.camel.component.vm
 class VmComponent
          An implementation of the VM components for asynchronous SEDA exchanges on a BlockingQueue within the classloader tree containing the camel-core.jar.
 

Uses of DefaultComponent in org.apache.camel.component.xslt
 

Subclasses of DefaultComponent in org.apache.camel.component.xslt
 class XsltComponent
          An XSLT Component for performing XSLT transforms of messages
 

Uses of DefaultComponent in org.apache.camel.impl
 

Subclasses of DefaultComponent in org.apache.camel.impl
 class HeaderFilterStrategyComponent
           
 class UriEndpointComponent
          A component implementation for endpoints which are annotated with UriEndpoint to describe their configurable parameters via annotations
 



Apache Camel