blob: 34b04c2e0ec6b067abbb2bb8bd70918db6fd751e [file] [log] [blame]
Madan Jampanic27b6b22016-02-05 11:36:31 -08001/*
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 * Autonomous system Number class (32 Bit ASNumber).
24 */
25public class AsNumber {
26 private final int asNum;
27
28 /**
29 * Constructor to set As number.
30 *
31 * @param asNum As number
32 */
33 public AsNumber(int asNum) {
34 this.asNum = asNum;
35 }
36
37 /**
38 * Obtain autonomous system number.
39 *
40 * @return autonomous system number
41 */
42 public int asNum() {
43 return asNum;
44 }
45
46 @Override
47 public int hashCode() {
48 return Objects.hash(asNum);
49 }
50
51 @Override
52 public boolean equals(Object obj) {
53 if (this == obj) {
54 return true;
55 }
56
57 if (obj instanceof AsNumber) {
58 AsNumber other = (AsNumber) obj;
59 return Objects.equals(asNum, other.asNum);
60 }
61 return false;
62 }
63
64 @Override
65 public String toString() {
66 return toStringHelper(this)
67 .add("asNum", asNum)
68 .toString();
69 }
Satish Kf6d87cb2015-11-30 19:59:22 +053070}