2 * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.sal.binding.test.mock;
10 import org.opendaylight.yangtools.yang.binding.Identifier;
13 public class ReferencableObjectKey implements Identifier<ReferencableObject> {
14 private static final long serialVersionUID = 1L;
17 public ReferencableObjectKey(Integer value) {
22 public int hashCode() {
25 result = prime * result + (value == null ? 0 : value.hashCode());
30 public boolean equals(Object obj) {
37 if (getClass() != obj.getClass()) {
40 ReferencableObjectKey other = (ReferencableObjectKey) obj;
42 if (other.value != null) {
45 } else if (!value.equals(other.value)) {
52 public String toString() {
53 return "ReferencableObjectKey [value=" + value + "]";