Fix Jdk8 compatibility
[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.yangtools.yang.binding.DataObject;
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 {
23
24
25     /**
26      * Method allows to send message that will be using RequestContext
27      * wrapped by this context.
28      *
29      * @param dataObject
30      */
31     void sendMessage(DataObject dataObject, RequestContext requestContext);
32
33     /**
34      * Method allows to send rpc request that will be using RequestContext
35      * wrapped by this context.
36      *
37      * @param dataObject
38      */
39     Xid sendRequest(DataObject dataObject, RequestContext requestContext);
40
41     /**
42      * Method registers handler responsible for handling operations related to connected device after
43      * request context is created.
44      *
45      * @param deviceContextReadyHandler
46      */
47     public void addRequestContextReadyHandler(DeviceContextReadyHandler deviceContextReadyHandler);
48
49 }