Move adsal into its own subdirectory.
[controller.git] / opendaylight / sal / connection / api / src / main / java / org / opendaylight / controller / sal / connection / IPluginInConnectionService.java
diff --git a/opendaylight/sal/connection/api/src/main/java/org/opendaylight/controller/sal/connection/IPluginInConnectionService.java b/opendaylight/sal/connection/api/src/main/java/org/opendaylight/controller/sal/connection/IPluginInConnectionService.java
deleted file mode 100644 (file)
index f4e16fa..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * 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
- */
-
-package org.opendaylight.controller.sal.connection;
-
-import java.util.Map;
-
-import org.opendaylight.controller.sal.core.Node;
-import org.opendaylight.controller.sal.utils.Status;
-
-/**
- * The interface describes methods to be implemented by protocol plugins
- */
-public interface IPluginInConnectionService {
-    /**
-     * Disconnect a Node that is connected to this Controller.
-     *
-     * @param node
-     *            the given node {@link org.opendaylight.controller.sal.core.Node}
-     */
-    public Status disconnect(Node node);
-
-    /**
-     * Connect to a node
-     *
-     * @param connectionIdentifier Convenient identifier for the applications to make use of
-     * @param params Connection Params in Map format. This is entirely handled by the south-bound
-     * plugins and is an opaque value for SAL. Typical values keyed inside this params are
-     * Management IP-Address, Username, Password, Security Keys, etc...
-     *
-     * @return Node
-     */
-    public Node connect (String connectionIdentifier, Map<ConnectionConstants, String> params);
-
-    /**
-     * View Change notification
-     */
-    public void notifyClusterViewChanged();
-
-    /**
-     * Node Disconnected from the node's master controller.
-     *
-     * @param node
-     *            the given node {@link org.opendaylight.controller.sal.core.Node}
-     */
-    public void notifyNodeDisconnectFromMaster(Node node);
-
-}
\ No newline at end of file