Bug 1764 - moved Session related interfaces to openflowplugin-api
[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 java.util.concurrent.atomic.AtomicInteger;
12
13 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
14 import org.opendaylight.openflowplugin.api.openflow.md.core.ConnectionConductor;
15 import org.opendaylight.openflowplugin.api.openflow.md.queue.QueueProcessor;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
17 import org.opendaylight.yangtools.yang.binding.DataObject;
18
19 /**
20  * @author mirehak
21  *
22  */
23 public final class ConnectionConductorFactory {
24
25     private static AtomicInteger conductorId = new AtomicInteger();
26     
27     private ConnectionConductorFactory() {
28         throw new UnsupportedOperationException();
29     }
30
31     /**
32      * @param connectionAdapter
33      * @param queueProcessor 
34      * @return conductor for given connection
35      */
36     public static ConnectionConductor createConductor(ConnectionAdapter connectionAdapter,
37             QueueProcessor<OfHeader, DataObject> queueProcessor) {
38         ConnectionConductor connectionConductor = new ConnectionConductorImpl(connectionAdapter);
39         connectionConductor.setQueueProcessor(queueProcessor);
40         connectionConductor.setId(conductorId.getAndIncrement());
41         connectionConductor.init();
42         return connectionConductor;
43     }
44
45 }