Uses of Class
org.apache.camel.impl.ParameterConfiguration

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

Uses of ParameterConfiguration in org.apache.camel
 

Methods in org.apache.camel that return ParameterConfiguration
 ParameterConfiguration ComponentConfiguration.getParameterConfiguration(String name)
          Returns the URI query parameter configuration for the given parameter name or null if it does not exist
 

Methods in org.apache.camel that return types with arguments of type ParameterConfiguration
 SortedMap<String,ParameterConfiguration> ComponentConfiguration.getParameterConfigurationMap()
          Returns the sorted map of all the parameter names to their ParameterConfiguration objects
 

Uses of ParameterConfiguration in org.apache.camel.impl
 

Subclasses of ParameterConfiguration in org.apache.camel.impl
 class AnnotatedParameterConfiguration
          An implementation of ParameterConfiguration which comes from a field or setter method which has access to its underlying annotations to be able to expose additional validation and conversion metadata for the parameter via annotations
 

Methods in org.apache.camel.impl that return ParameterConfiguration
 ParameterConfiguration ComponentConfigurationSupport.getParameterConfiguration(String name)
           
 ParameterConfiguration UriEndpointConfiguration.getPropertyConfiguration(String name)
          Returns the property configuration for the given property name or null if it does not exist
static ParameterConfiguration ParameterConfiguration.newInstance(String name, Field field, org.apache.camel.spi.UriParam uriParam)
          Factory method to create a new ParameterConfiguration from a field
 

Methods in org.apache.camel.impl that return types with arguments of type ParameterConfiguration
static SortedMap<String,ParameterConfiguration> UriEndpointComponent.createParameterConfigurationMap(Class<? extends Endpoint> endpointClass)
          Returns a newly created sorted map, indexed by name of all the parameter configurations of the given endpoint class using introspection for the various annotations like UriEndpoint, UriParam, UriParams
 SortedMap<String,ParameterConfiguration> UriComponentConfiguration.getParameterConfigurationMap()
           
 SortedMap<String,ParameterConfiguration> DefaultComponentConfiguration.getParameterConfigurationMap()
          Since we have no parameter metadata lets just return parameter configurations for each parameter we have right now.
 SortedMap<String,ParameterConfiguration> UriEndpointComponent.getParameterConfigurationMap()
          Returns the sorted map of all the URI query parameter names to their ParameterConfiguration objects
 SortedMap<String,ParameterConfiguration> UriEndpointConfiguration.getPropertyConfigurationMap()
          Returns the sorted map of all the property names to their ParameterConfiguration objects
 

Method parameters in org.apache.camel.impl with type arguments of type ParameterConfiguration
protected static void UriEndpointComponent.populateParameterConfigurationMap(SortedMap<String,ParameterConfiguration> parameterMap, Class<?> aClass, String prefix)
           
 

Constructor parameters in org.apache.camel.impl with type arguments of type ParameterConfiguration
UriComponentConfiguration(Component component, Class<? extends Endpoint> endpointClass, SortedMap<String,ParameterConfiguration> parameterConfigurationMap)
           
 



Apache Camel