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

Packages that use UriEndpointComponent
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.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.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.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 UriEndpointComponent in org.apache.camel.component.bean
 

Subclasses of UriEndpointComponent 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 UriEndpointComponent in org.apache.camel.component.browse
 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Subclasses of UriEndpointComponent 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 UriEndpointComponent in org.apache.camel.component.log
 

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

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

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

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

Subclasses of UriEndpointComponent 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 UriEndpointComponent in org.apache.camel.component.stub
 

Subclasses of UriEndpointComponent 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 UriEndpointComponent in org.apache.camel.component.test
 

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

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

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

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

Subclasses of UriEndpointComponent 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 UriEndpointComponent in org.apache.camel.component.xslt
 

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

Uses of UriEndpointComponent in org.apache.camel.impl
 

Constructors in org.apache.camel.impl with parameters of type UriEndpointComponent
UriComponentConfiguration(UriEndpointComponent component)
           
 



Apache Camel