Merge "Address @XmlSeeAlso limitation. Provide the ability to inject the JAXB types...
[controller.git] / opendaylight / northbound / bundlescanner / implementation / src / test / java / bundle_base / Person.java
1 package bundle_base;
2
3 import javax.xml.bind.annotation.XmlElement;
4 import javax.xml.bind.annotation.XmlRootElement;
5 import javax.xml.bind.annotation.XmlTransient;
6
7 @XmlTransient
8 @Deprecated
9 public class Person extends BasePerson {
10
11     @XmlElement
12     protected String name;
13
14     public String getName() {
15         return name;
16     }
17
18     public void setName(String name) {
19         this.name = name;
20     }
21
22     @XmlRootElement
23     public static class Info { }
24
25     @XmlRootElement
26     private static class PrivateInfo { }
27 }