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