use of org.apache.camel.util.jndi.JndiContext in project camel by apache.
the class BeanWithXQueryInjectionTest method createJndiContext.
@Override
protected Context createJndiContext() throws Exception {
JndiContext answer = new JndiContext();
answer.bind("myBean", myBean);
return answer;
}
use of org.apache.camel.util.jndi.JndiContext in project camel by apache.
the class XPathAnnotationResultTypeTest method createJndiContext.
@Override
protected Context createJndiContext() throws Exception {
JndiContext answer = new JndiContext();
answer.bind("myBean", myBean);
return answer;
}
use of org.apache.camel.util.jndi.JndiContext in project camel by apache.
the class BeanWithXQueryInjectionUsingHeaderValueTest method createJndiContext.
@Override
protected Context createJndiContext() throws Exception {
JndiContext answer = new JndiContext();
answer.bind("myBean", myBean);
return answer;
}
use of org.apache.camel.util.jndi.JndiContext in project camel by apache.
the class RssEntrySortTest method createJndiContext.
@Override
protected Context createJndiContext() throws Exception {
JndiContext jndi = new JndiContext();
jndi.bind("myBean", new MyBean());
return jndi;
}
use of org.apache.camel.util.jndi.JndiContext in project camel by apache.
the class RssFilterTest method createJndiContext.
@Override
protected Context createJndiContext() throws Exception {
JndiContext jndi = new JndiContext();
jndi.bind("myFilterBean", new FilterBean());
return jndi;
}
Aggregations