ae90ec37e9ef64af658d3a449cc3312021e2b6cc
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / NodeCacheListener.java
1 /*
2  * Copyright (C) 2015 Red Hat, Inc.
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  *  Authors : Flavio Fernandes
9  */
10 package org.opendaylight.ovsdb.openstack.netvirt.api;
11
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
13
14 /**
15  * When this interface is used, instance owner will get callbacks on
16  * changes that occur in NodeCacheManager
17  */
18 public interface NodeCacheListener {
19
20     public void notifyNode(Node node, Action action);
21 }