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.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.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.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.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.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.impl
 

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



Apache Camel