3373761fa30ab7ee8a088e90b7c791a2dad829c1
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / ConnectionConductorFactory.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
9 package org.opendaylight.openflowplugin.openflow.md.core;
10
11 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
12 import org.opendaylight.openflowplugin.openflow.md.queue.QueueKeeper;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
14 import org.opendaylight.yangtools.yang.binding.DataObject;
15
16 /**
17  * @author mirehak
18  *
19  */
20 public abstract class ConnectionConductorFactory {
21
22     /**
23      * @param connectionAdapter
24      * @param queueKeeper 
25      * @return conductor for given connection
26      */
27     public static ConnectionConductor createConductor(ConnectionAdapter connectionAdapter, 
28             QueueKeeper<OfHeader, DataObject> queueKeeper) {
29         ConnectionConductor connectionConductor = new ConnectionConductorImpl(connectionAdapter);
30         connectionConductor.setQueueKeeper(queueKeeper);
31         connectionConductor.init();
32         return connectionConductor;
33     }
34
35 }