Plugin migration to use the new Schema independent Library.
[ovsdb.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / IConnectionServiceInternal.java
index ee3567e035e4bd125c0ac2ce7aed9a707feaae28..925438a4ad13d8e5f819bd142f56562af085d360 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.ovsdb.plugin;
 
 import java.util.List;
 import java.util.Map;
-import java.util.concurrent.ExecutionException;
 
 import org.opendaylight.controller.sal.connection.ConnectionConstants;
 import org.opendaylight.controller.sal.core.Node;
@@ -20,5 +19,4 @@ public interface IConnectionServiceInternal {
     public Connection getConnection(Node node);
     public List<Node> getNodes();
     public Node connect(String identifier, Map<ConnectionConstants, String> params);
-    public Boolean setOFController(Node node, String bridgeUUID) throws InterruptedException, ExecutionException;
 }