Merge "BUG-2188: To populate the port_number of switches - yang model"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / device / ReadyForNewTransactionChainHandlerImpl.java
1 /*
2  * Copyright (c) 2015 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.impl.device;
10
11 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
12 import org.opendaylight.openflowplugin.api.openflow.device.DeviceManager;
13
14 /**
15  * Created by Martin Bobak <mbobak@cisco.com> on 5.6.2015.
16  */
17 public class ReadyForNewTransactionChainHandlerImpl implements ReadyForNewTransactionChainHandler {
18
19     private final DeviceManager deviceManager;
20     private final ConnectionContext connectionContext;
21
22     public ReadyForNewTransactionChainHandlerImpl(final DeviceManager deviceManager, final ConnectionContext connectionContext) {
23         this.deviceManager = deviceManager;
24         this.connectionContext = connectionContext;
25     }
26
27     @Override
28     public void onReadyForNewTransactionChain() {
29         deviceManager.deviceConnected(connectionContext);
30     }
31 }