Change to update node properties
[controller.git] / opendaylight / 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.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 State property of an Edge
20  *
21  *
22  */
23 @XmlRootElement
24 @SuppressWarnings("serial")
25 public class State extends Property {
26     @XmlElement
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     public State clone() {
48         return new State(this.stateValue);
49     }
50
51     public short getValue() {
52         return this.stateValue;
53     }
54
55     @Override
56     public int hashCode() {
57         return HashCodeBuilder.reflectionHashCode(this);
58     }
59
60     @Override
61     public boolean equals(Object obj) {
62         return EqualsBuilder.reflectionEquals(this, obj);
63     }
64
65     @Override
66     public String toString() {
67         return "State[" + stateValue + "]";
68     }
69 }