Added Security Rule for Custom ICMP
[ovsdb.git] / ovsdb-plugin-compatibility-layer / src / main / java / org / opendaylight / ovsdb / compatibility / plugin / api / OvsdbInventoryService.java
index 489120c0ed2876ecd7d39a8a63236f5e20f2cce7..7b152e890163c2dcd2830227a0ad4c538a952a27 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 2015 Red Hat, Inc. and others. All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Madhu Venugopal, Brent Salisbury
  */
+
 package org.opendaylight.ovsdb.compatibility.plugin.api;
 
 import java.net.InetAddress;
@@ -20,15 +19,15 @@ import org.opendaylight.ovsdb.lib.message.TableUpdates;
 import org.opendaylight.ovsdb.lib.notation.Row;
 
 public interface OvsdbInventoryService{
-    public ConcurrentMap<String, ConcurrentMap<String, Row>> getCache(Node n, String databaseName);
-    public ConcurrentMap<String, Row> getTableCache(Node n, String databaseName, String tableName);
-    public Row getRow (Node n, String databaseName, String tableName, String uuid);
-    public void updateRow(Node n, String databaseName, String tableName, String uuid, Row row);
-    public void removeRow(Node n, String databaseName, String tableName, String uuid);
-    public void processTableUpdates(Node n, String databaseName,TableUpdates tableUpdates);
-    public void printCache(Node n);
-    public void addNode(Node n, Set<Property> props);
-    public void notifyNodeAdded(Node n, InetAddress address, int port);
-    public void removeNode(Node n);
-    public void addNodeProperty(Node node, UpdateType type, Set<Property> props);
+    ConcurrentMap<String, ConcurrentMap<String, Row>> getCache(Node n, String databaseName);
+    ConcurrentMap<String, Row> getTableCache(Node n, String databaseName, String tableName);
+    Row getRow(Node n, String databaseName, String tableName, String uuid);
+    void updateRow(Node n, String databaseName, String tableName, String uuid, Row row);
+    void removeRow(Node n, String databaseName, String tableName, String uuid);
+    void processTableUpdates(Node n, String databaseName, TableUpdates tableUpdates);
+    void printCache(Node n);
+    void addNode(Node n, Set<Property> props);
+    void notifyNodeAdded(Node n, InetAddress address, int port);
+    void removeNode(Node n);
+    void addNodeProperty(Node node, UpdateType type, Set<Property> props);
 }
\ No newline at end of file