Added more ignorable files to .gitignore
[ovsdb.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / IConnectionServiceInternal.java
1 /*
2  * Copyright (C) 2013 Red Hat, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Madhu Venugopal, Brent Salisbury
9  */
10 package org.opendaylight.ovsdb.plugin;
11
12 import java.util.List;
13 import java.util.Map;
14 import java.util.concurrent.ExecutionException;
15
16 import org.opendaylight.controller.sal.connection.ConnectionConstants;
17 import org.opendaylight.controller.sal.core.Node;
18
19 public interface IConnectionServiceInternal {
20     public Connection getConnection(Node node);
21     public List<Node> getNodes();
22     public Node connect(String identifier, Map<ConnectionConstants, String> params);
23     public Boolean setOFController(Node node, String bridgeUUID) throws InterruptedException, ExecutionException;
24 }