Uses of Interface
org.apache.camel.EndpointConfiguration

Packages that use EndpointConfiguration
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of EndpointConfiguration in org.apache.camel
 

Methods in org.apache.camel that return EndpointConfiguration
 EndpointConfiguration Component.createConfiguration(String uri)
          Attempt to create a configuration object from the given uri
 EndpointConfiguration Endpoint.getEndpointConfiguration()
          Returns the object representation of the endpoint configuration
 

Uses of EndpointConfiguration in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement EndpointConfiguration
 class DefaultEndpointConfiguration
          Default implementation of EndpointConfiguration.
 class MappedEndpointConfiguration
          Fallback implementation of EndpointConfiguration used by Components that did not yet define a configuration type.
 class UriEndpointConfiguration
          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 EndpointConfiguration
 EndpointConfiguration DefaultComponent.createConfiguration(String uri)
           
static EndpointConfiguration ConfigurationHelper.createConfiguration(String uri, CamelContext context)
           
protected  EndpointConfiguration DefaultEndpoint.createEndpointConfiguration(String uri)
          A factory method to lazily create the endpoint configuration if none is specified
 EndpointConfiguration DefaultEndpoint.getEndpointConfiguration()
           
 EndpointConfiguration InterceptSendToEndpoint.getEndpointConfiguration()
           
 

Methods in org.apache.camel.impl with parameters of type EndpointConfiguration
static Field ConfigurationHelper.findConfigurationField(EndpointConfiguration config, String name)
           
static Object ConfigurationHelper.getConfigurationParameter(EndpointConfiguration config, Field field)
           
static Object ConfigurationHelper.getConfigurationParameter(EndpointConfiguration config, String name)
           
static void ConfigurationHelper.populateFromURI(CamelContext camelContext, EndpointConfiguration config, ConfigurationHelper.ParameterSetter setter)
           
<T> void
ConfigurationHelper.ParameterSetter.set(CamelContext camelContext, EndpointConfiguration config, String name, T value)
          Sets the parameter on the configuration.
<T> void
ConfigurationHelper.FieldParameterSetter.set(CamelContext camelContext, EndpointConfiguration config, String name, T value)
           
static
<T> void
ConfigurationHelper.setConfigurationField(CamelContext camelContext, EndpointConfiguration config, String name, T value)
           
 void DefaultEndpoint.setEndpointConfiguration(EndpointConfiguration endpointConfiguration)
          Sets a custom EndpointConfiguration
 



Apache Camel