a3ca90d6bd1828976e9c28b9ff1cb501de5c4097
[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 import org.opendaylight.yang.gen.v1.urn.opendaylight.role.service.rev150727.OfpRole;
13
14 /**
15  * This API is for all listeners who wish to know about device context in cluster
16  */
17 public interface DeviceContextChangeListener {
18
19     /**
20      * Notification about start phase in device context, right after successful handshake
21      * @param nodeId
22      * @param success or failure
23      */
24     void deviceStartInitializationDone(final NodeId nodeId, final boolean success);
25
26     /**
27      * Notification about start phase in device context, after all other contexts initialized properly
28      * @param nodeId
29      * @param success
30      */
31     void deviceInitializationDone(final NodeId nodeId, final boolean success);
32
33 }