Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / routing / IListenRoutingUpdates.java
diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IListenRoutingUpdates.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/routing/IListenRoutingUpdates.java
new file mode 100644 (file)
index 0000000..dde6510
--- /dev/null
@@ -0,0 +1,26 @@
+
+/*
+ * Copyright (c) 2013 Cisco Systems, 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
+ */
+
+package org.opendaylight.controller.sal.routing;
+
+/**
+ * Interface that will be implemented by the modules that wants to
+ * know events published by the routing engine
+ *
+ */
+
+public interface IListenRoutingUpdates {
+    /**
+     * Method invoked when the recalculation of the all shortest path
+     * tree is done
+     *
+     */
+    public void recalculateDone();
+
+}