Remove the usages of @XmlSeeAlso annotation.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Property.java
index a5deb547e351c1f154fd0eade864173aa82c011b..c36ac92cef0f74dac996666045d2692be7478537 100644 (file)
@@ -10,6 +10,8 @@ package org.opendaylight.controller.sal.core;
 
 import java.io.Serializable;
 
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlSeeAlso;
 
@@ -28,11 +30,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
  * element
  */
 @XmlRootElement
-@XmlSeeAlso({ Config.class, Name.class, State.class, TimeStamp.class,
-    Latency.class, Bandwidth.class, Tier.class, Actions.class,
-    AdvertisedBandwidth.class, Buffers.class, Capabilities.class,
-    MacAddress.class, PeerBandwidth.class, SupportedBandwidth.class,
-    Tables.class, Description.class, ForwardingMode.class })
+@XmlAccessorType(XmlAccessType.NONE)
 abstract public class Property implements Serializable, Cloneable {
     private static final long serialVersionUID = 1L;
     private final String name;