Uses of Interface
org.apache.camel.spi.Language

Packages that use Language
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.language Camel language support such as Bean and Simple language. 
org.apache.camel.language.bean Camel Bean language. 
org.apache.camel.language.constant Camel Constant language. 
org.apache.camel.language.header Camel Header language. 
org.apache.camel.language.simple Camel Simple language. 
org.apache.camel.language.xpath Camel XPath language support. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
org.apache.camel.util Utility classes used by the core of Camel and useful for Camel component developers 
 

Uses of Language in org.apache.camel
 

Methods in org.apache.camel that return Language
 Language CamelContext.resolveLanguage(String language)
          Resolves a language for creating expressions
 

Uses of Language in org.apache.camel.impl
 

Methods in org.apache.camel.impl that return Language
protected  Language DefaultLanguageResolver.noSpecificLanguageFound(String name, CamelContext context)
           
 Language DefaultCamelContext.resolveLanguage(String language)
           
 Language DefaultLanguageResolver.resolveLanguage(String name, CamelContext context)
           
 

Uses of Language in org.apache.camel.language
 

Methods in org.apache.camel.language that return Language
 Language IllegalSyntaxException.getLanguage()
           
 

Constructors in org.apache.camel.language with parameters of type Language
IllegalSyntaxException(Language language, String expression)
           
IllegalSyntaxException(Language language, String expression, Throwable cause)
           
 

Uses of Language in org.apache.camel.language.bean
 

Classes in org.apache.camel.language.bean that implement Language
 class BeanLanguage
          A bean language which uses a simple text notation to invoke methods on beans to evaluate predicates or expressions

The notation is essentially beanName.methodName which is then invoked using the beanName to lookup in the bean integration to bind the Exchange to the method arguments.

 

Uses of Language in org.apache.camel.language.constant
 

Classes in org.apache.camel.language.constant that implement Language
 class ConstantLanguage
          A language for constant expressions.
 

Uses of Language in org.apache.camel.language.header
 

Classes in org.apache.camel.language.header that implement Language
 class HeaderLanguage
          A language for header expressions.
 

Uses of Language in org.apache.camel.language.simple
 

Classes in org.apache.camel.language.simple that implement Language
 class AbstractSimpleLanguage
          Abstract base class for Simple languages.
 class FileLanguage
          File language is an extension to Simple language to add file specific expressions.
 class SimpleLanguage
          A simple language which maps simple property style notations to access headers and bodies.
 

Uses of Language in org.apache.camel.language.xpath
 

Classes in org.apache.camel.language.xpath that implement Language
 class XPathLanguage
          XPath language.
 

Uses of Language in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return Language
 Language LanguageResolver.resolveLanguage(String name, CamelContext context)
          Resolves the given language.
 

Uses of Language in org.apache.camel.util
 

Methods in org.apache.camel.util that return Language
static Language CamelContextHelper.resolveMandatoryLanguage(CamelContext camelContext, String languageName)
          Resolves the given language name into a Language or throws an exception if it could not be converted
 



Copyright © 2009 IONA Open Source Community. All Rights Reserved.