Merge "Implemented the deleteBridgeDomain method in ConfigurationService"
[netvirt.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / plugin / IConnectionServiceInternal.java
1 package org.opendaylight.ovsdb.plugin;
2
3 import java.util.Map;
4
5 import org.opendaylight.controller.sal.connection.ConnectionConstants;
6 import org.opendaylight.controller.sal.core.Node;
7
8 public interface IConnectionServiceInternal {
9     public Connection getConnection(Node node);
10     public Node connect(String identifier, Map<ConnectionConstants, String> params);
11 }