Enhancement to switchmanager CLI commands to display all the properties of node and...
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / MacAddress.java
index 27e74e08008094759bda6bc5c6c846f40eef262c..2dfa9168fe91905b52a2312e6f493692fe6d6172 100644 (file)
@@ -109,4 +109,9 @@ public class MacAddress extends Property implements Cloneable {
     public String toString() {
         return "MacAddress[" + address + "]";
     }
+
+    @Override
+    public String getStringValue() {
+        return address;
+    }
 }