Introduced translator librarian
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceManager.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.api.openflow.device;
10
11 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceConnectedHandler;
12 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextReadyHandler;
13 import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
14
15 /**
16  * This interface is responsible for instantiating DeviceContext and
17  * registering transaction chain for each DeviceContext. Each device
18  * has its own device context managed by this manager.
19  * <p>
20  * Created by Martin Bobak &lt;mbobak@cisco.com&gt; on 25.2.2015.
21  */
22 public interface DeviceManager extends DeviceConnectedHandler, TranslatorLibrarian {
23
24     /**
25      * Method registers handler responsible for handling operations related to connected device after
26      * request context is created.
27      *
28      * @param deviceContextReadyHandler
29      */
30     public void addRequestContextReadyHandler(DeviceContextReadyHandler deviceContextReadyHandler);
31
32 }
33