org.apache.camel.spi
Interface EndpointCompleter

All Known Implementing Classes:
FileComponent

public interface EndpointCompleter

A helper interface used by the ComponentConfiguration.completeEndpointPath(String) method to allow endpoint paths to be completed. Component implementations should try to implement this API to make your component behave nicer in command line, IDE and web based tools.


Method Summary
 List<String> completeEndpointPath(ComponentConfiguration configuration, String completionText)
          Given the configuration and completion text, return a list of possible completion values for a command line, IDE or web based tool.
 

Method Detail

completeEndpointPath

List<String> completeEndpointPath(ComponentConfiguration configuration,
                                  String completionText)
Given the configuration and completion text, return a list of possible completion values for a command line, IDE or web based tool.



Apache Camel