Search in sources :

Example 1 with XPathLanguage

use of org.apache.camel.language.xpath.XPathLanguage in project camel by apache.

the class XPathTest method assertResolveLanguage.

@Override
protected Language assertResolveLanguage(String languageName) {
    XPathLanguage answer = new XPathLanguage();
    answer.setResultType(XPathConstants.STRING);
    assertEquals(XPathConstants.STRING, answer.getResultType());
    return answer;
}
Also used : XPathLanguage(org.apache.camel.language.xpath.XPathLanguage)

Example 2 with XPathLanguage

use of org.apache.camel.language.xpath.XPathLanguage in project camel by apache.

the class XPathLanguageAutoConfiguration method configureXPathLanguage.

@Bean(name = "xpath-language")
@Scope("prototype")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(XPathLanguage.class)
public XPathLanguage configureXPathLanguage(CamelContext camelContext, XPathLanguageConfiguration configuration) throws Exception {
    XPathLanguage language = new XPathLanguage();
    if (CamelContextAware.class.isAssignableFrom(XPathLanguage.class)) {
        CamelContextAware contextAware = CamelContextAware.class.cast(language);
        if (contextAware != null) {
            contextAware.setCamelContext(camelContext);
        }
    }
    Map<String, Object> parameters = new HashMap<>();
    IntrospectionSupport.getProperties(configuration, parameters, null, false);
    IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), language, parameters);
    return language;
}
Also used : XPathLanguage(org.apache.camel.language.xpath.XPathLanguage) CamelContextAware(org.apache.camel.CamelContextAware) HashMap(java.util.HashMap) Scope(org.springframework.context.annotation.Scope) ConditionalOnMissingBean(org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean) ConditionalOnClass(org.springframework.boot.autoconfigure.condition.ConditionalOnClass) ConditionalOnBean(org.springframework.boot.autoconfigure.condition.ConditionalOnBean) ConditionalOnMissingBean(org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean) Bean(org.springframework.context.annotation.Bean)

Aggregations

XPathLanguage (org.apache.camel.language.xpath.XPathLanguage)2 HashMap (java.util.HashMap)1 CamelContextAware (org.apache.camel.CamelContextAware)1 ConditionalOnBean (org.springframework.boot.autoconfigure.condition.ConditionalOnBean)1 ConditionalOnClass (org.springframework.boot.autoconfigure.condition.ConditionalOnClass)1 ConditionalOnMissingBean (org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean)1 Bean (org.springframework.context.annotation.Bean)1 Scope (org.springframework.context.annotation.Scope)1