ddb663f5901fe8aa45ab2318a8e86615ae3de05d
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Name.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.core;
11
12 import javax.xml.bind.annotation.XmlElement;
13 import javax.xml.bind.annotation.XmlRootElement;
14
15 /**
16  * The class represents the Name property of an element.
17  */
18 @XmlRootElement
19 @SuppressWarnings("serial")
20 public class Name extends Property {
21     @XmlElement
22     private String nameValue;
23     public static final String NamePropName = "name";
24
25     /*
26      * Private constructor used for JAXB mapping
27      */
28     private Name() {
29         super(NamePropName);
30         this.nameValue = null;
31     }
32
33     public Name(String name) {
34         super(NamePropName);
35         this.nameValue = name;
36     }
37
38     public Name clone() {
39         return new Name(this.nameValue);
40     }
41
42     public String getValue() {
43         return this.nameValue;
44     }
45
46     @Override
47     public int hashCode() {
48         final int prime = 31;
49         int result = super.hashCode();
50         result = prime * result
51                 + ((nameValue == null) ? 0 : nameValue.hashCode());
52         return result;
53     }
54
55     @Override
56     public boolean equals(Object obj) {
57         if (this == obj)
58             return true;
59         if (!super.equals(obj))
60             return false;
61         if (getClass() != obj.getClass())
62             return false;
63         Name other = (Name) obj;
64         if (nameValue == null) {
65             if (other.nameValue != null)
66                 return false;
67         } else if (!nameValue.equals(other.nameValue))
68             return false;
69         return true;
70     }
71
72     @Override
73     public String toString() {
74         return "Name[" + nameValue + "]";
75     }
76 }