Refactor of the OVSDB Plugin
[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 org.opendaylight.controller.sal.connection.ConnectionConstants;
13 import org.opendaylight.controller.sal.core.Node;
14 import org.opendaylight.ovsdb.plugin.api.Connection;
15
16 import java.util.List;
17 import java.util.Map;
18
19 /**
20  * OVSDB Plugin Connection Service
21  * @deprecated as of release 1.0.0, replaced by {@link org.opendaylight.ovsdb.plugin.api.OvsdbConnectionService}
22  */
23 @Deprecated public interface IConnectionServiceInternal {
24     public Connection getConnection(Node node);
25     public List<Node> getNodes();
26     public Node connect(String identifier, Map<ConnectionConstants, String> params);
27 }