Move adsal into its own subdirectory.
[controller.git] / opendaylight / hosttracker_new / api / src / main / java / org / opendaylight / controller / hosttracker / hostAware / HostNodeConnector.java
diff --git a/opendaylight/hosttracker_new/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java b/opendaylight/hosttracker_new/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java
deleted file mode 100644 (file)
index fe396ba..0000000
+++ /dev/null
@@ -1,215 +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.hosttracker.hostAware;
-
-import java.net.Inet4Address;
-import java.net.Inet6Address;
-import java.net.InetAddress;
-import java.util.Arrays;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-
-import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
-import org.opendaylight.controller.sal.core.ConstructionException;
-import org.opendaylight.controller.sal.core.Host;
-import org.opendaylight.controller.sal.core.Node;
-import org.opendaylight.controller.sal.core.NodeConnector;
-import org.opendaylight.controller.sal.packet.address.EthernetAddress;
-
-@XmlRootElement(name = "host")
-@XmlAccessorType(XmlAccessType.NONE)
-public class HostNodeConnector extends Host {
-    private static final long serialVersionUID = 1L;
-    @XmlElement
-    private NodeConnector nodeConnector;
-    @XmlElement
-    private short vlan;
-    @XmlElement
-    private boolean staticHost;
-    private transient short arpSendCountDown;
-
-    /**
-     * Private constructor used for JAXB mapping
-     */
-    @SuppressWarnings("unused")
-    private HostNodeConnector() {
-    }
-
-    public HostNodeConnector(InetAddress ip) throws ConstructionException {
-        this(ip, null);
-    }
-
-    public HostNodeConnector(InetAddress ip, NodeConnector nc)
-            throws ConstructionException {
-        this(new EthernetAddress(new byte[] { (byte) 0x00, (byte) 0x00,
-                (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }), ip, nc,
-                (short) 0);
-    }
-
-    public HostNodeConnector(byte[] mac, InetAddress ip, NodeConnector nc,
-            short vlan) throws ConstructionException {
-        this(new EthernetAddress(mac.clone()), ip, nc, vlan);
-    }
-
-    public HostNodeConnector(EthernetAddress eaddr, InetAddress naddr,
-            NodeConnector nc, short vlan) throws ConstructionException {
-        super(eaddr, naddr);
-        this.nodeConnector = nc;
-        this.vlan = vlan;
-    }
-
-    /**
-     * @return the NodeConnector
-     */
-    public NodeConnector getnodeConnector() {
-        return this.nodeConnector;
-    }
-
-    /**
-     * @return the Node
-     */
-    public Node getnodeconnectorNode() {
-        return this.nodeConnector.getNode();
-    }
-
-    /**
-     * @return the NodeId
-     */
-    public Long getnodeconnectornodeId() {
-        return (Long) this.nodeConnector.getNode().getID();
-    }
-
-    /**
-     * @return the port
-     */
-    public Short getnodeconnectorportId() {
-        return (Short) this.nodeConnector.getID();
-    }
-
-    /**
-     * @return the DataLayerAddress
-     */
-    public byte[] getDataLayerAddressBytes() {
-        byte[] macaddr = null;
-        if (getDataLayerAddress() instanceof EthernetAddress) {
-            EthernetAddress e = (EthernetAddress) getDataLayerAddress();
-            macaddr = e.getValue();
-        }
-        return macaddr;
-    }
-
-    /**
-     * @return the vlan
-     */
-    public short getVlan() {
-        return this.vlan;
-    }
-
-    public boolean isStaticHost() {
-        return this.staticHost;
-    }
-
-    public HostNodeConnector setStaticHost(boolean statically_learned) {
-        this.staticHost = statically_learned;
-        return this;
-    }
-
-    public HostNodeConnector initArpSendCountDown() {
-        this.arpSendCountDown = 24;
-        return this;
-    }
-
-    public short getArpSendCountDown() {
-        return (this.arpSendCountDown);
-    }
-
-    public HostNodeConnector setArpSendCountDown(short cntdown) {
-        this.arpSendCountDown = cntdown;
-        return this;
-    }
-
-    @Override
-    public int hashCode() {
-        final int prime = 31;
-        int result = super.hashCode();
-        result = prime * result
-                + ((nodeConnector == null) ? 0 : nodeConnector.hashCode());
-        result = prime * result + (staticHost ? 1231 : 1237);
-        result = prime * result + vlan;
-        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;
-        HostNodeConnector other = (HostNodeConnector) obj;
-        if (nodeConnector == null) {
-            if (other.nodeConnector != null)
-                return false;
-        } else if (!nodeConnector.equals(other.nodeConnector))
-            return false;
-        if (staticHost != other.staticHost)
-            return false;
-        if (vlan != other.vlan)
-            return false;
-        return true;
-    }
-
-    public boolean equalsByIP(InetAddress networkAddress) {
-        return (this.getNetworkAddress().equals(networkAddress));
-    }
-
-    public boolean isRewriteEnabled() {
-        byte[] emptyArray = new byte[] { (byte) 0x00, (byte) 0x00, (byte) 0x00,
-                (byte) 0x00, (byte) 0x00, (byte) 0x00 };
-        byte[] macaddr = null;
-        if (getDataLayerAddress() instanceof EthernetAddress) {
-            EthernetAddress e = (EthernetAddress) getDataLayerAddress();
-            macaddr = e.getValue();
-        }
-        if (macaddr == null)
-            return false;
-        return !Arrays.equals(emptyArray, macaddr);
-    }
-
-    /*
-     * (non-Javadoc)
-     *
-     * @see java.lang.Object#toString()
-     */
-    @Override
-    public String toString() {
-        return "HostNodeConnector[" + ReflectionToStringBuilder.toString(this)
-                + "]";
-    }
-
-    public boolean isV4Host() {
-        return (getNetworkAddress() instanceof Inet4Address);
-    }
-
-    public boolean isV6Host() {
-        return (getNetworkAddress() instanceof Inet6Address);
-    }
-
-    public String toJson() {
-        return "{\"host\":\"" + super.toString() + "\", " + "\"vlan\":\""
-                + String.valueOf(vlan) + "\",\"NodeConnector\":\""
-                + nodeConnector.toString() + "\"," + "\"static\":\""
-                + String.valueOf(isStaticHost()) + "\"}";
-    }
-
-}