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

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

Subclasses of DefaultEndpoint in org.apache.camel.component
 class ResourceEndpoint
          A useful base class for endpoints which depend on a resource such as things like Velocity or XQuery based components.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.bean
 class BeanEndpoint
          Endpoint for the bean component.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.binding
 class BindingEndpoint
          Applies a Binding to an underlying Endpoint so that the binding processes messages before its sent to the endpoint and processes messages received by the endpoint consumer before its passed to the real consumer.
 

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

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

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

Subclasses of DefaultEndpoint in org.apache.camel.component.controlbus
 class ControlBusEndpoint
          The control bus endpoint.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.dataformat
 class DataFormatEndpoint
           
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.dataset
 class DataSetEndpoint
          Endpoint for DataSet.
 

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

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

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

Subclasses of DefaultEndpoint in org.apache.camel.component.directvm
 class DirectVmEndpoint
          The direct-vm endpoint.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.file
 class FileEndpoint
          File endpoint.
 class GenericFileEndpoint<T>
          Base class for file endpoints
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.language
 class LanguageEndpoint
          Language endpoint.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.log
 class LogEndpoint
          Logger endpoint.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.mock
 class MockEndpoint
          A Mock endpoint which provides a literate, fluent API for testing routes using a JMock style API.
 

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

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

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

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

Subclasses of DefaultEndpoint in org.apache.camel.component.timer
 class TimerEndpoint
          Represents a timer endpoint that can generate periodic inbound exchanges triggered by a timer.
 

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

Subclasses of DefaultEndpoint in org.apache.camel.component.xslt
 class XsltEndpoint
           
 

Uses of DefaultEndpoint in org.apache.camel.impl
 

Subclasses of DefaultEndpoint in org.apache.camel.impl
 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
 

Constructors in org.apache.camel.impl with parameters of type DefaultEndpoint
DefaultScheduledPollConsumer(DefaultEndpoint defaultEndpoint, Processor processor)
           
 



Apache Camel