Fix Device Port Status
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Config.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.sal.core;
10
11 import org.apache.commons.lang3.builder.HashCodeBuilder;
12 import org.apache.commons.lang3.builder.EqualsBuilder;
13 import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
14
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlElement;
17
18 /**
19  * The class represents Admin Config status
20  * 
21  * 
22  */
23 @XmlRootElement
24 @SuppressWarnings("serial")
25 public class Config extends Property {
26     @XmlElement
27     private short configValue;
28
29     public static final short ADMIN_DOWN = 0;
30     public static final short ADMIN_UP = 1;
31     public static final short ADMIN_UNDEF = 0x7fff;
32     public static final String ConfigPropName = "config";
33
34     /*
35      * Private constructor used for JAXB mapping
36      */
37     private Config() {
38         super(ConfigPropName);
39         this.configValue = ADMIN_UNDEF;
40     }
41
42     public Config(short config) {
43         super(ConfigPropName);
44         this.configValue = config;
45     }
46
47     public Config clone() {
48         return new Config(this.configValue);
49     }
50
51     public short getValue() {
52         return this.configValue;
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 "Config["+ReflectionToStringBuilder.toString(this)+"]";
68     }
69 }