org.apache.camel.spi
Interface BrowsableEndpoint<T extends Exchange>

All Superinterfaces:
Endpoint<T>
All Known Implementing Classes:
DataSetEndpoint, ListEndpoint, MockEndpoint, SedaEndpoint

public interface BrowsableEndpoint<T extends Exchange>
extends Endpoint<T>

An optional interface an Endpoint may choose to implement which allows it to expose a way of browsing the exchanges available.

Version:
$Revision: 688279 $

Method Summary
 List<Exchange> getExchanges()
          Return the exchanges available on this endpoint
 
Methods inherited from interface org.apache.camel.Endpoint
configureProperties, createConsumer, createExchange, createExchange, createExchange, createPollingConsumer, createProducer, getCamelContext, getContext, getEndpointUri, isLenientProperties, isSingleton, setCamelContext, setContext
 

Method Detail

getExchanges

List<Exchange> getExchanges()
Return the exchanges available on this endpoint

Returns:
the exchanges on this endpoint


Apache CAMEL