blob: 558c81150945107fb2c3ebe6877072cff1e74c09 [file] [log] [blame]
Satish Kf6d87cb2015-11-30 19:59:22 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Satish Kf6d87cb2015-11-30 19:59:22 +05303 *
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 the igp administrative tags of the prefix.
24 */
25public class RouteTag {
26 private final int routeTag;
27
28 /**
29 * Constructor to initialize its parameter.
30 *
31 * @param routeTag IGP route tag
32 */
33 public RouteTag(int routeTag) {
34 this.routeTag = routeTag;
35 }
36
37 /**
38 * Obtains igp administrative tags of the prefix.
39 *
40 * @return igp administrative tags of the prefix
41 */
42 public int routeTag() {
43 return routeTag;
44 }
45
46 @Override
47 public int hashCode() {
48 return Objects.hash(routeTag);
49 }
50
51 @Override
52 public boolean equals(Object obj) {
53 if (this == obj) {
54 return true;
55 }
56
57 if (obj instanceof RouteTag) {
58 RouteTag other = (RouteTag) obj;
59 return Objects.equals(routeTag, other.routeTag);
60 }
61 return false;
62 }
63
64 @Override
65 public String toString() {
66 return toStringHelper(this)
67 .add("routeTag", routeTag)
68 .toString();
69 }
70}