1c43c41de208f7a3ca4390ab223d067159f779c5
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / NodeCacheListener.java
1 /*
2  * Copyright (c) 2015 Red Hat, 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 package org.opendaylight.ovsdb.openstack.netvirt.api;
9
10 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
11
12 /**
13  * When this interface is used, instance owner will get callbacks on
14  * changes that occur in NodeCacheManager
15  *
16  * @author Flavio Fernandes (ffernand@redhat.com)
17  * @author Sam Hague (shague@redhat.com)
18  */
19 public interface NodeCacheListener {
20     public void notifyNode(Node node, Action action);
21 }