Merge remote-tracking branch 'origin/master' into merge-branch
[netvirt.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / OVSDBInventoryListener.java
1 /*
2  * Copyright (C) 2013 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 : Madhu Venugopal, Brent Salisbury
9  */
10 package org.opendaylight.ovsdb.plugin;
11
12 import org.opendaylight.controller.sal.core.Node;
13 import org.opendaylight.ovsdb.lib.table.Table;
14
15 public interface OVSDBInventoryListener {
16     public void nodeAdded(Node node);
17     public void nodeRemoved(Node node);
18     public void rowAdded(Node node, String tableName, String uuid, Table<?> row);
19     public void rowUpdated(Node node, String tableName, String uuid, Table<?> old, Table<?> row);
20     public void rowRemoved(Node node, String tableName, String uuid, Table<?> row, Object context);
21 }