Add support for openflow node callbacks
[ovsdb.git] / openstack / net-virt-providers / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / providers / openflow13 / PipelineOrchestrator.java
index d30047ad9f0324d34217a96cec4ce3bd45084c8a..b180f0985ba6cdf74ff6e0da15eb6a68b8aaba4c 100644 (file)
@@ -4,18 +4,19 @@
  * 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 : Dave Tucker, Madhu Venugopal
  */
-
 package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
 
 /**
  * A PipelineOrchestrator provides the necessary orchestration logic to allow multiple network services
  * to share a common OpenFlow 1.3 based multi-table pipeline.
+ *
+ * @author Dave Tucker
+ * @author Madhu Venugopal
  */
 public interface PipelineOrchestrator {
     public Service getNextServiceInPipeline(Service service);
     AbstractServiceInstance getServiceInstance(Service service);
-    public void enqueue(String nodeId);
+    public void enqueue(Node node);
 }