Uses of Interface
org.apache.camel.ComponentConfiguration

Packages that use ComponentConfiguration
org.apache.camel The core Camel API. 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of ComponentConfiguration in org.apache.camel
 

Methods in org.apache.camel that return ComponentConfiguration
 ComponentConfiguration Component.createComponentConfiguration()
          Creates a configuration helper object for a component that lets you configure the various URI and parameter values; then create the full URI for it, create a new Endpoint from it or configure an existing Endpoint from the values.
 

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

Methods in org.apache.camel.component.file with parameters of type ComponentConfiguration
 List<String> FileComponent.completeEndpointPath(ComponentConfiguration configuration, String completionText)
           
protected  boolean FileComponent.isValidEndpointCompletion(ComponentConfiguration configuration, String completionText, File file)
          Returns true if this is a valid file for completion.
 

Uses of ComponentConfiguration in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement ComponentConfiguration
 class ComponentConfigurationSupport
          Useful base class for implementations of ComponentConfiguration
 class DefaultComponentConfiguration
          Default implementation for components which do not inherit from UriEndpointComponent and do not have Endpoint classes annotated with UriEndpoint
 class UriComponentConfiguration
          Implements EndpointConfiguration for Endpoint implementations which are annotated with UriEndpoint to use the UriParam and UriParams annotations to denote its parameters which can be specified via URI query parameters.
 

Methods in org.apache.camel.impl that return ComponentConfiguration
 ComponentConfiguration UriEndpointComponent.createComponentConfiguration()
           
 ComponentConfiguration DefaultComponent.createComponentConfiguration()
           
 

Uses of ComponentConfiguration in org.apache.camel.spi
 

Methods in org.apache.camel.spi with parameters of type ComponentConfiguration
 List<String> EndpointCompleter.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