Uses of Class
org.apache.camel.component.bean.MethodInfo

Packages that use MethodInfo
org.apache.camel.component.bean The Bean Component which will look up the bean name in the Spring ApplicationContext and use that to dispatch messages to a POJO 
 

Uses of MethodInfo in org.apache.camel.component.bean
 

Methods in org.apache.camel.component.bean that return MethodInfo
protected  MethodInfo BeanInfo.chooseMethod(Object pojo, Exchange exchange, String name)
          Choose one of the available methods to invoke if we can match the message body to the body parameter
protected  MethodInfo BeanInfo.createMethodInfo(Class<?> clazz, Method method)
           
protected  MethodInfo MethodInfoCache.createMethodInfo(Method method)
           
 MethodInfo MethodInfoCache.getMethodInfo(Method method)
           
 MethodInfo BeanInfo.getMethodInfo(Method method)
          Returns the MethodInfo for the given method if it exists or null if there is no metadata available for the given method
 

Methods in org.apache.camel.component.bean that return types with arguments of type MethodInfo
 List<MethodInfo> BeanInfo.getMethods()
          Gets the list of methods sorted by A..Z method name.
 Collection<MethodInfo> AmbiguousMethodCallException.getMethods()
          The ambiguous methods for which a single method could not be chosen
 

Constructor parameters in org.apache.camel.component.bean with type arguments of type MethodInfo
AmbiguousMethodCallException(Exchange exchange, Collection<MethodInfo> methods)
           
MethodInfoCache(CamelContext camelContext, Map<Class<?>,BeanInfo> classCache, Map<Method,MethodInfo> methodCache)
           
 



Apache CAMEL