Bug 1029: Remove dead code: samples/clustersession
[controller.git] / opendaylight / northbound / bundlescanner / implementation / src / test / java / bundle_base / Person.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package bundle_base;
9
10 import javax.xml.bind.annotation.XmlElement;
11 import javax.xml.bind.annotation.XmlRootElement;
12 import javax.xml.bind.annotation.XmlTransient;
13
14 @XmlTransient
15 @Deprecated
16 public class Person extends BasePerson {
17
18     @XmlElement
19     protected String name;
20
21     public String getName() {
22         return name;
23     }
24
25     public void setName(String name) {
26         this.name = name;
27     }
28
29     @XmlRootElement
30     public static class Info { }
31
32     @XmlRootElement
33     private static class PrivateInfo { }
34 }