use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class AggregateForceCompletionOnStopTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("myCompletionProcessor", new MyCompletionProcessor());
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class TryFinallyCaughtExceptionTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("myBean", this);
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class TryCatchCaughtExceptionFinallyTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("myBean", this);
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class TryCatchCaughtExceptionTwoTimesTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("myBean", this);
return jndi;
}
use of org.apache.camel.impl.JndiRegistry in project camel by apache.
the class OnExceptionComplexRouteTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("myServiceBean", myServiceBean);
return jndi;
}
Aggregations