Initial opendaylight infrastructure commit!!
[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 org.apache.commons.lang3.builder.HashCodeBuilder;
13 import org.apache.commons.lang3.builder.EqualsBuilder;
14 import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
15
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlElement;
18
19 /**
20  * The class represents the Name property of an element.
21  *
22  *
23  */
24 @XmlRootElement
25 @SuppressWarnings("serial")
26 public class Name extends Property {
27     @XmlElement
28     private String nameValue;
29     public static final String NamePropName = "name";
30
31     /*
32      * Private constructor used for JAXB mapping
33      */
34     private Name() {
35         super(NamePropName);
36         this.nameValue = null;
37     }
38
39     public Name(String name) {
40         super(NamePropName);
41         this.nameValue = name;
42     }
43
44     public Name clone() {
45         return new Name(this.nameValue);
46     }
47
48     public String getValue() {
49         return this.nameValue;
50     }
51
52     @Override
53     public int hashCode() {
54         return HashCodeBuilder.reflectionHashCode(this);
55     }
56
57     @Override
58     public boolean equals(Object obj) {
59         return EqualsBuilder.reflectionEquals(this, obj);
60     }
61
62     @Override
63     public String toString() {
64         return "Name[" + ReflectionToStringBuilder.toString(this) + "]";
65     }
66 }