e0660cbfc3a83327412c4f825a343e2a8fc6c0e3
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / connection / ConnectionManager.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.connection;
10
11 import org.opendaylight.openflowjava.protocol.api.connection.SwitchConnectionHandler;
12 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceConnectedHandler;
13
14 /**
15  * Connection manager manages connections with devices.
16  * It instantiates and registers {@link ConnectionContext}
17  * used for handling all communication with device when onSwitchConnected notification is processed.
18  */
19 public interface ConnectionManager extends SwitchConnectionHandler {
20
21     /**
22      * Method registers handler responsible handling operations related to connected device after
23      * device is connected.
24      * @param deviceConnectedHandler device connected handler
25      */
26     void setDeviceConnectedHandler(DeviceConnectedHandler deviceConnectedHandler);
27
28     /**
29      * Setter for echo reply timeout.
30      * @param echoReplyTimeout {@link Long} timeout
31      */
32     void setEchoReplyTimeout(long echoReplyTimeout);
33 }