use of org.apache.camel.example.cafe.stuff.Barista in project camel by apache.
the class CafeRouteBuilder method createRegistry.
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = new JndiRegistry();
jndi.bind("drinkRouter", new DrinkRouter());
jndi.bind("orderSplitter", new OrderSplitter());
jndi.bind("barista", new Barista());
jndi.bind("waiter", new Waiter());
jndi.bind("aggregatorStrategy", new CafeAggregationStrategy());
return jndi;
}
use of org.apache.camel.example.cafe.stuff.Barista in project camel by apache.
the class CafeRouteBuilderTest method createRegistry.
@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
jndi.bind("drinkRouter", driverRouter);
jndi.bind("orderSplitter", new OrderSplitter());
jndi.bind("barista", new Barista());
jndi.bind("waiter", waiter);
jndi.bind("aggregatorStrategy", new CafeAggregationStrategy());
return jndi;
}
Aggregations