blob: 9d414e35ee47e10e72933d39625f8b17678c8200 [file] [log] [blame]
Satish Kf6d87cb2015-11-30 19:59:22 +05301/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.iptopology.api;
17
18import java.util.Objects;
19
20import com.google.common.base.MoreObjects;
21
22/**
23 * Represents Multi-Topology IDs for a network link, node or prefix.
24 */
25public class TopologyId {
26 private final short topologyId;
27
28 /**
29 * Constructor to initialize its parameter.
30 *
31 * @param topologyId topology id for node/link/prefix
32 */
33 public TopologyId(short topologyId) {
34 this.topologyId = topologyId;
35 }
36
37 /**
38 * Obtains the topology ID.
39 *
40 * @return topology ID
41 */
42 public short topologyId() {
43 return topologyId;
44 }
45
46 @Override
47 public int hashCode() {
48 return Objects.hash(topologyId);
49 }
50
51 @Override
52 public boolean equals(Object obj) {
53 if (this == obj) {
54 return true;
55 }
56
57 if (obj instanceof TopologyId) {
58 TopologyId other = (TopologyId) obj;
59 return Objects.equals(topologyId, other.topologyId);
60 }
61 return false;
62 }
63
64 @Override
65 public String toString() {
66 return MoreObjects.toStringHelper(getClass())
67 .add("topologyId", topologyId)
68 .toString();
69 }
70}