X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FConfig.java;fp=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2FConfig.java;h=0000000000000000000000000000000000000000;hp=64562fa6ed9571098edad14c021cafbdd9496f2c;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Config.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Config.java deleted file mode 100644 index 64562fa6ed..0000000000 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/Config.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.controller.sal.core; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlRootElement; - -/** - * The class represents Admin Config status - * - * - */ -@XmlRootElement -@SuppressWarnings("serial") -@XmlAccessorType(XmlAccessType.NONE) -public class Config extends Property { - @XmlElement(name="value") - private short configValue; - - public static final short ADMIN_DOWN = 0; - public static final short ADMIN_UP = 1; - public static final short ADMIN_UNDEF = 0x7fff; - public static final String ConfigPropName = "config"; - - /* - * Private constructor used for JAXB mapping - */ - private Config() { - super(ConfigPropName); - this.configValue = ADMIN_UNDEF; - } - - public Config(short config) { - super(ConfigPropName); - this.configValue = config; - } - - @Override - public Config clone() { - return new Config(this.configValue); - } - - public short getValue() { - return this.configValue; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = super.hashCode(); - result = prime * result + configValue; - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (!super.equals(obj)) - return false; - if (getClass() != obj.getClass()) - return false; - Config other = (Config) obj; - if (configValue != other.configValue) - return false; - return true; - } - - @Override - public String toString() { - return "Config["+ configValue +"]"; - } - - @Override - public String getStringValue() { - if (configValue == 0) { - return "ADMIN_DOWN"; - } else if (configValue == 1) { - return "ADMIN_UP"; - } else if (configValue == 0x7fff) { - return "ADMIN_UNDEF"; - } else { - return String.valueOf(configValue); - } - } -}