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.servicemix.eip;
018    
019    import java.util.List;
020    
021    import org.apache.servicemix.common.DefaultComponent;
022    
023    /**
024     * @author gnodet
025     * @version $Revision: 376451 $
026     * @org.apache.xbean.XBean element="component"
027     *                  description="An EIP component"
028     */
029    public class EIPComponent extends DefaultComponent {
030    
031        private EIPEndpoint[] endpoints;
032    
033        public EIPComponent() {
034        }
035        
036        /**
037         * @return Returns the endpoints.
038         */
039        public EIPEndpoint[] getEndpoints() {
040            return endpoints;
041        }
042    
043        /**
044         * @param endpoints The endpoints to set.
045         */
046        public void setEndpoints(EIPEndpoint[] endpoints) {
047            this.endpoints = endpoints;
048        }
049        
050        protected List getConfiguredEndpoints() {
051            return asList(endpoints);
052        }
053    
054        protected Class[] getEndpointClasses() {
055            return new Class[] {EIPEndpoint.class };
056        }
057    
058    }