cafe-endpointdsl/src/main/java/org/apache/camel/example/cafe/CafeRouteBuilder.java [43:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void main(String[] args) throws Exception {
        CafeRouteBuilder builder = new CafeRouteBuilder();
        builder.runCafeRouteDemo();
    }
    
    protected void bindBeans(Registry registry) throws Exception {
        registry.bind("drinkRouter", new DrinkRouter());
        registry.bind("orderSplitter", new OrderSplitter());
        registry.bind("barista", new Barista());
        registry.bind("waiter", new Waiter());
        registry.bind("aggregatorStrategy", new CafeAggregationStrategy());
    }
    
    public void runCafeRouteDemo() throws Exception {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cafe/src/main/java/org/apache/camel/example/cafe/CafeRouteBuilder.java [34:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void main(String[] args) throws Exception {
        CafeRouteBuilder builder = new CafeRouteBuilder();
        builder.runCafeRouteDemo();
    }
    
    protected void bindBeans(Registry registry) throws Exception {
        registry.bind("drinkRouter", new DrinkRouter());
        registry.bind("orderSplitter", new OrderSplitter());
        registry.bind("barista", new Barista());
        registry.bind("waiter", new Waiter());
        registry.bind("aggregatorStrategy", new CafeAggregationStrategy());
    }
    
    public void runCafeRouteDemo() throws Exception {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



