33d63b78617a330ad83ba6030325e45ade03a3da
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / lifecycle / DeviceContextChangeListener.java
1 /*
2  * Copyright (c) 2016 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.lifecycle;
10
11 import org.opendaylight.openflowplugin.api.openflow.device.DeviceInfo;
12
13 /**
14  * This API is for all listeners who wish to know about device context in cluster
15  */
16 public interface DeviceContextChangeListener {
17
18     /**
19      * Notification about start phase in device context, right after successful handshake
20      * @param deviceInfo
21      * @param success or failure
22      */
23     void deviceStartInitializationDone(final DeviceInfo deviceInfo, final boolean success);
24
25     /**
26      * Notification about start phase in device context, after all other contexts initialized properly
27      * @param deviceInfo
28      * @param success
29      */
30     void deviceInitializationDone(final DeviceInfo deviceInfo, final boolean success);
31
32 }