Initial code drop
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPDispatcherImpl.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.rib.impl;
9
10 import java.io.Closeable;
11 import java.io.IOException;
12
13 import org.opendaylight.protocol.bgp.parser.BGPMessageParser;
14 import org.opendaylight.protocol.bgp.parser.BGPSession;
15 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPConnection;
16 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPDispatcher;
17
18 import org.opendaylight.protocol.framework.Dispatcher;
19
20 /**
21  * Implementation of BGPDispatcher.
22  */
23 public final class BGPDispatcherImpl implements BGPDispatcher, Closeable {
24
25         private final Dispatcher dispatcher;
26
27         public BGPDispatcherImpl(final Dispatcher dispatcher) throws IOException {
28                 this.dispatcher = dispatcher;
29         }
30
31         @Override
32         public BGPSession createClient(final BGPConnection connection, final BGPMessageParser parser) throws IOException {
33                 return (BGPSession) this.dispatcher.createClient(connection, new BGPSessionFactory(parser), BGPInputStream.FACTORY);
34         }
35
36         public Dispatcher getDispatcher() {
37                 return this.dispatcher;
38         }
39
40         @Override
41         public void close() {
42                 // This is only necessary for configuration interaction
43         }
44 }