Porting Tristate logic to SAL Connection Service and make use of it in Inventory...
[controller.git] / opendaylight / connectionmanager / api / src / main / java / org / opendaylight / controller / connectionmanager / ConnectionLocality.java
diff --git a/opendaylight/connectionmanager/api/src/main/java/org/opendaylight/controller/connectionmanager/ConnectionLocality.java b/opendaylight/connectionmanager/api/src/main/java/org/opendaylight/controller/connectionmanager/ConnectionLocality.java
deleted file mode 100644 (file)
index 347ca07..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-package org.opendaylight.controller.connectionmanager;
-
-public enum ConnectionLocality {
-    /**
-     * This controller is the (or one of the) master for a given node
-     */
-    LOCAL("This controller is the (or one of the) master for a given node"),
-
-    /**
-     * This controller is not the master for a given node
-     */
-    NOT_LOCAL("This controller is not the master for a given node"),
-
-    /**
-     * The given node is not connected to any of the controllers in the cluster
-     */
-    NOT_CONNECTED("The given node is not connected to any of the controllers in the cluster");
-
-    private ConnectionLocality(String description) {
-        this.description = description;
-    }
-
-    private String description;
-
-    public String toString() {
-        return description;
-    }
-}