89db9aab248e367a183b232f4bb936d66831acd3
[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.HashCodeBuilder;
16 import org.apache.commons.lang3.builder.EqualsBuilder;
17 import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
18
19 /**
20  * The class represents the Tier property of a node
21  *
22  *
23  */
24 @XmlRootElement
25 @SuppressWarnings("serial")
26 public class Tier extends Property {
27     @XmlElement
28     private int tierValue;
29     public static final String TierPropName = "tier";
30
31     public Tier(int tier) {
32         super(TierPropName);
33         this.tierValue = tier;
34     }
35
36     /*
37      * Private constructor used for JAXB mapping
38      */
39     private Tier() {
40         super(TierPropName);
41         this.tierValue = 0;
42     }
43
44     public Tier clone() {
45         return new Tier(this.tierValue);
46     }
47
48     public int getValue() {
49         return this.tierValue;
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 "Tier[" + ReflectionToStringBuilder.toString(this) + "]";
65     }
66 }