Merge "BUG-2218: Keep existing link augmentations during discovery process"
[controller.git] / opendaylight / adsal / 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.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlRootElement;
16
17 /**
18  * The class represents the Tier property of a node
19  *
20  *
21  */
22 @XmlRootElement
23 @XmlAccessorType(XmlAccessType.NONE)
24 @SuppressWarnings("serial")
25 public class Tier extends Property {
26     @XmlElement(name="value")
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     @Override
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         final int prime = 31;
55         int result = super.hashCode();
56         result = prime * result + tierValue;
57         return result;
58     }
59
60     @Override
61     public boolean equals(Object obj) {
62         if (this == obj)
63             return true;
64         if (!super.equals(obj))
65             return false;
66         if (getClass() != obj.getClass())
67             return false;
68         Tier other = (Tier) obj;
69         if (tierValue != other.tierValue)
70             return false;
71         return true;
72     }
73
74     @Override
75     public String toString() {
76         return "Tier[" + tierValue + "]";
77     }
78
79     @Override
80     public String getStringValue() {
81         return String.valueOf(tierValue);
82     }
83 }