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