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

Packages that use BrowsableEndpoint
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.file The File Component for working with file systems. 
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.management.mbean Camel management JMX MBeans 
org.apache.camel.util Utility classes used by the core of Camel. 
 

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

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

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

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

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

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

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

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

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

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

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

Classes in org.apache.camel.component.test that implement BrowsableEndpoint
 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 BrowsableEndpoint in org.apache.camel.management.mbean
 

Methods in org.apache.camel.management.mbean that return BrowsableEndpoint
 BrowsableEndpoint ManagedBrowsableEndpoint.getEndpoint()
           
 BrowsableEndpoint ManagedBrowsableEndpoint.getInstance()
           
 

Constructors in org.apache.camel.management.mbean with parameters of type BrowsableEndpoint
ManagedBrowsableEndpoint(BrowsableEndpoint endpoint)
           
 

Uses of BrowsableEndpoint in org.apache.camel.util
 

Methods in org.apache.camel.util with parameters of type BrowsableEndpoint
static String EndpointHelper.browseRangeMessagesAsXml(BrowsableEndpoint endpoint, Integer fromIndex, Integer toIndex, Boolean includeBody)
          Browses the BrowsableEndpoint within the given range, and returns the messages as a XML payload.
 



Apache Camel