Uses of Interface
org.apache.camel.spi.HasId

Packages that use HasId
org.apache.camel.component Base classes for Components 
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.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.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.xslt The XSLT Component for transforming messages with XSLT 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of HasId in org.apache.camel.component
 

Classes in org.apache.camel.component that implement HasId
 class ResourceEndpoint
          A useful base class for endpoints which depend on a resource such as things like Velocity or XQuery based components.
 

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

Classes in org.apache.camel.component.bean that implement HasId
 class BeanEndpoint
          Endpoint for the bean component.
 

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

Classes in org.apache.camel.component.browse that implement HasId
 class BrowseEndpoint
          An endpoint which maintains a List of Exchange instances which can be useful for tooling, debugging and visualising routes.
 

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

Classes in org.apache.camel.component.dataset that implement HasId
 class DataSetEndpoint
          Endpoint for DataSet.
 

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

Classes in org.apache.camel.component.direct that implement HasId
 class DirectEndpoint
          Represents a direct endpoint that synchronously invokes the consumer of the endpoint when a producer sends a message to it.
 

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

Classes in org.apache.camel.component.directvm that implement HasId
 class DirectVmEndpoint
          The direct-vm endpoint.
 

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

Classes in org.apache.camel.component.file that implement HasId
 class FileEndpoint
          File endpoint.
 class GenericFileEndpoint<T>
          Base class for file endpoints
 

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

Classes in org.apache.camel.component.language that implement HasId
 class LanguageEndpoint
          Language endpoint.
 

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

Classes in org.apache.camel.component.log that implement HasId
 class LogEndpoint
          Logger endpoint.
 

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

Classes in org.apache.camel.component.mock that implement HasId
 class MockEndpoint
          A Mock endpoint which provides a literate, fluent API for testing routes using a JMock style API.
 

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

Classes in org.apache.camel.component.seda that implement HasId
 class SedaEndpoint
          An implementation of the Queue components for asynchronous SEDA exchanges on a BlockingQueue within a CamelContext
 

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

Classes in org.apache.camel.component.test that implement HasId
 class TestEndpoint
          A Test Endpoint is a Mock Endpoint for testing but it will pull all messages from the nested endpoint and use those as expected message body assertions.
 

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

Classes in org.apache.camel.component.timer that implement HasId
 class TimerEndpoint
          Represents a timer endpoint that can generate periodic inbound exchanges triggered by a timer.
 

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

Classes in org.apache.camel.component.xslt that implement HasId
 class XsltEndpoint
           
 

Uses of HasId in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement HasId
 class DefaultEndpoint
          A default endpoint useful for implementation inheritance.
 class DefaultPollingEndpoint
          A base class for an endpoint which the default consumer mode is to use a PollingConsumer
 class ProcessorEndpoint
          An endpoint which allows exchanges to be sent into it which just invokes a given Processor.
 class ScheduledPollEndpoint
          A base class for Endpoint which creates a ScheduledPollConsumer
 



Apache CAMEL