19854c7913a1f91eb6307f08043d7d708f8d916a
[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.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
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 nodeId
21      * @param success or failure
22      */
23     void deviceStartInitializationDone(final NodeId nodeId, final boolean success);
24
25     /**
26      * Notification about start phase in device context, after all other contexts initialized properly
27      * @param nodeId
28      * @param success
29      */
30     void deviceInitializationDone(final NodeId nodeId, final boolean success);
31
32 }