blob: fbca820c81544e6084b162763f478b6bc9f0722a [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 static com.google.common.base.MoreObjects.toStringHelper;
19
20import java.util.Objects;
21
22/**
23 * Represents routing universe where the network element belongs.
24 */
25public class RouteInstance {
26 private final long routeInstance;
27
28 /**
29 * Constructor to initialize routeInstance.
30 *
31 * @param routeInstance routing protocol instance
32 */
33 public RouteInstance(long routeInstance) {
34 this.routeInstance = routeInstance;
35 }
36
37 /**
38 * Obtain route instance.
39 *
40 * @return route instance
41 */
42 public long routeInstance() {
43 return routeInstance;
44 }
45
46 @Override
47 public int hashCode() {
48 return Objects.hash(routeInstance);
49 }
50
51 @Override
52 public boolean equals(Object obj) {
53 if (this == obj) {
54 return true;
55 }
56
57 if (obj instanceof RouteInstance) {
58 RouteInstance other = (RouteInstance) obj;
59 return Objects.equals(routeInstance, other.routeInstance);
60 }
61 return false;
62 }
63
64 @Override
65 public String toString() {
66 return toStringHelper(this)
67 .add("routeInstance", routeInstance)
68 .toString();
69 }
70}