Changed the current WIP Pipeline Orchestrator to a more simplified Static Pipeline...
[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.notation.Row;
14
15 /**
16  * OVSDB Plugin Inventory Listener
17  * @deprecated as of release 1.0.0, replaced by {@link org.opendaylight.ovsdb.plugin.api.OvsdbInventoryListener }
18  */
19 @Deprecated public interface OvsdbInventoryListener {
20     public void nodeAdded(Node node);
21     public void nodeRemoved(Node node);
22     public void rowAdded(Node node, String tableName, String uuid, Row row);
23     public void rowUpdated(Node node, String tableName, String uuid, Row old, Row row);
24     public void rowRemoved(Node node, String tableName, String uuid, Row row, Object context);
25 }