/* * 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.packet.address; import java.io.Serializable; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSeeAlso; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.ReflectionToStringBuilder; /** * @file DataLinkAddress.java * * @brief Abstract base class for a Datalink Address * */ /** * Abstract base class for a Datalink Address * */ @XmlRootElement @XmlSeeAlso( { EthernetAddress.class }) abstract public class DataLinkAddress implements Serializable { private static final long serialVersionUID = 1L; private String name; public DataLinkAddress() { } /** * Constructor of super class * * @param name Create a new DataLink, not for general use but * available only for sub classes * * @return constructed object */ protected DataLinkAddress(String name) { this.name = name; } /** * Used to copy the DataLinkAddress in a polymorphic way * * * @return A clone of this DataLinkAddress */ abstract public DataLinkAddress clone(); /** * Allow to distinguish among different data link addresses * * * @return Name of the DataLinkAdress we are working on */ public String getName() { return this.name; } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } @Override public boolean equals(Object obj) { return EqualsBuilder.reflectionEquals(this, obj); } @Override public String toString() { return "DataLinkAddress[" + ReflectionToStringBuilder.toString(this) + "]"; } }