Declare osgi.core.version in one pom and reuse it.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Description.java
index 92cd5b12e49bfe770dd8a2ed93a5baa518f3194d..88ab11b354341ac4a4888442611173cdc7e66850 100644 (file)
@@ -1,5 +1,7 @@
 package org.opendaylight.controller.sal.core;
 
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlRootElement;
 
@@ -8,8 +10,9 @@ import javax.xml.bind.annotation.XmlRootElement;
  */
 @XmlRootElement
 @SuppressWarnings("serial")
+@XmlAccessorType(XmlAccessType.NONE)
 public class Description extends Property {
-    @XmlElement
+    @XmlElement(name="value")
     private String descriptionValue;
     public static final String propertyName = "description";
 
@@ -26,6 +29,7 @@ public class Description extends Property {
         this.descriptionValue = description;
     }
 
+    @Override
     public Description clone() {
         return new Description(this.descriptionValue);
     }
@@ -64,4 +68,9 @@ public class Description extends Property {
     public String toString() {
         return "Description[" + descriptionValue + "]";
     }
+
+    @Override
+    public String getStringValue() {
+        return descriptionValue;
+    }
 }