001 /** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 package org.apache.camel.impl; 018 019 import java.util.List; 020 021 import org.apache.camel.Consumer; 022 import org.apache.camel.Endpoint; 023 import org.apache.camel.Processor; 024 import org.apache.camel.Route; 025 import org.apache.camel.Service; 026 027 /** 028 * A {@link Route} which starts with an 029 * <a href="http://camel.apache.org/event-driven-consumer.html">Event Driven Consumer</a> 030 * 031 * @version $Revision: 751655 $ 032 */ 033 public class EventDrivenConsumerRoute extends Route { 034 private Processor processor; 035 036 public EventDrivenConsumerRoute(Endpoint endpoint, Processor processor) { 037 super(endpoint); 038 this.processor = processor; 039 } 040 041 @Override 042 public String toString() { 043 return "EventDrivenConsumerRoute[" + getEndpoint() + " -> " + processor + "]"; 044 } 045 046 public Processor getProcessor() { 047 return processor; 048 } 049 050 public void setProcessor(Processor processor) { 051 this.processor = processor; 052 } 053 054 /** 055 * Factory method to lazily create the complete list of services required for this route 056 * such as adding the processor or consumer 057 */ 058 @Override 059 protected void addServices(List<Service> services) throws Exception { 060 Endpoint endpoint = getEndpoint(); 061 Consumer consumer = endpoint.createConsumer(processor); 062 if (consumer != null) { 063 services.add(consumer); 064 } 065 Processor processor = getProcessor(); 066 if (processor instanceof Service) { 067 services.add((Service)processor); 068 } 069 } 070 }