Refactored yang-maven-plugin. Updated tests.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Tier.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 Tier property of a node
20  *
21  *
22  */
23 @XmlRootElement
24 @SuppressWarnings("serial")
25 public class Tier extends Property {
26     @XmlElement
27     private int tierValue;
28     public static final String TierPropName = "tier";
29
30     public Tier(int tier) {
31         super(TierPropName);
32         this.tierValue = tier;
33     }
34
35     /*
36      * Private constructor used for JAXB mapping
37      */
38     private Tier() {
39         super(TierPropName);
40         this.tierValue = 0;
41     }
42
43     public Tier clone() {
44         return new Tier(this.tierValue);
45     }
46
47     public int getValue() {
48         return this.tierValue;
49     }
50
51     @Override
52     public int hashCode() {
53         return HashCodeBuilder.reflectionHashCode(this);
54     }
55
56     @Override
57     public boolean equals(Object obj) {
58         return EqualsBuilder.reflectionEquals(this, obj);
59     }
60
61     @Override
62     public String toString() {
63         return "Tier[" + tierValue + "]";
64     }
65 }