BUG-2218: Keep existing link augmentations during discovery process
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / core / State.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 State property of an Edge
19  *
20  *
21  */
22 @XmlRootElement
23 @XmlAccessorType(XmlAccessType.NONE)
24 @SuppressWarnings("serial")
25 public class State extends Property {
26     @XmlElement(name="value")
27     private short stateValue;
28
29     public static final short EDGE_DOWN = 0;
30     public static final short EDGE_UP = 1;
31     public static final short EDGE_UNK = 0x7fff;
32     public static final String StatePropName = "state";
33
34     /*
35      * Private constructor used for JAXB mapping
36      */
37     private State() {
38         super(StatePropName);
39         this.stateValue = EDGE_UNK;
40     }
41
42     public State(short state) {
43         super(StatePropName);
44         this.stateValue = state;
45     }
46
47     @Override
48     public State clone() {
49         return new State(this.stateValue);
50     }
51
52     public short getValue() {
53         return this.stateValue;
54     }
55
56     @Override
57     public int hashCode() {
58         final int prime = 31;
59         int result = super.hashCode();
60         result = prime * result + stateValue;
61         return result;
62     }
63
64     @Override
65     public boolean equals(Object obj) {
66         if (this == obj)
67             return true;
68         if (!super.equals(obj))
69             return false;
70         if (getClass() != obj.getClass())
71             return false;
72         State other = (State) obj;
73         if (stateValue != other.stateValue)
74             return false;
75         return true;
76     }
77
78     @Override
79     public String toString() {
80         return "State[" + stateValue + "]";
81     }
82
83     @Override
84     public String getStringValue() {
85         if (stateValue == 0) {
86             return ("EDGE_DOWN");
87         } else if (stateValue == 1) {
88             return ("EDGE_UP");
89         } else if (stateValue == 0x7fff) {
90             return ("EDGE_UNK");
91         } else {
92             return String.valueOf(stateValue);
93         }
94     }
95 }