blob: b292a29a3137af8c7a8645f1cb2ed139e34d34c6 [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 Traffic engineering metrics.
24 */
25public class Metric {
26 private final Integer metric;
27
28 /**
29 * Constructor to initialize its metric.
30 *
31 * @param metric can be TE metric or IGP metric or Prefix metric
32 */
33 public Metric(Integer metric) {
34 this.metric = metric;
35 }
36
37 /**
38 * Obtains traffic engineering metric.
39 *
40 * @return traffic engineering metric
41 */
42 public Integer metric() {
43 return metric;
44 }
45
46 @Override
47 public int hashCode() {
48 return Objects.hash(metric);
49 }
50
51 @Override
52 public boolean equals(Object obj) {
53 if (this == obj) {
54 return true;
55 }
56
57 if (obj instanceof Metric) {
58 Metric other = (Metric) obj;
59 return Objects.equals(metric, other.metric);
60 }
61 return false;
62 }
63
64 @Override
65 public String toString() {
66 return toStringHelper(this)
67 .add("metric", metric)
68 .toString();
69 }
70}