Uses of Class
org.apache.camel.language.LanguageAnnotation

Packages that use LanguageAnnotation
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 
org.apache.camel.language Camel language support such as Bean and Simple language. 
 

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

Methods in org.apache.camel.component.bean with parameters of type LanguageAnnotation
 Expression BeanAnnotationExpressionFactory.createExpression(CamelContext camelContext, Annotation annotation, LanguageAnnotation languageAnnotation, Class<?> expressionReturnType)
           
 Expression XPathAnnotationExpressionFactory.createExpression(CamelContext camelContext, Annotation annotation, LanguageAnnotation languageAnnotation, Class<?> expressionReturnType)
           
 Expression AnnotationExpressionFactory.createExpression(CamelContext camelContext, Annotation annotation, LanguageAnnotation languageAnnotation, Class<?> expressionReturnType)
           
 Expression DefaultAnnotationExpressionFactory.createExpression(CamelContext camelContext, Annotation annotation, LanguageAnnotation languageAnnotation, Class<?> expressionReturnType)
           
 

Uses of LanguageAnnotation in org.apache.camel.language
 

Classes in org.apache.camel.language with annotations of type LanguageAnnotation
 interface Bean
          Used to inject a bean expression into a field, property, method or parameter when using Bean Integration.
 interface Constant
          Used to inject a constant expression into a field, property, method or parameter when using Bean Integration.
 interface Simple
          Used to inject a simple expression into a field, property, method or parameter when using Bean Integration.
 interface SpEL
          An annotation for injection of Spring Expression Language (SpEL) expressions into method parameters, fields or properties.
 interface XPath
          Used to inject an XPath expression into a field, property, method or parameter when using Bean Integration.
 



Apache Camel