blob: 6a38661943da7077525e257a5b8defb01eb7f9b1 [file] [log] [blame]
Yoonseon Hane026a7f2017-08-23 06:05:25 +09001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16
Thomas Vachuska52f2cd12018-11-08 21:20:04 -080017package org.onosproject.incubator.net.virtual.store.impl.primitives;
Yoonseon Hane026a7f2017-08-23 06:05:25 +090018
19import org.onosproject.incubator.net.virtual.NetworkId;
20import org.onosproject.net.DeviceId;
21
22import java.util.Objects;
23
24/**
25 * A wrapper class to isolate device id from other virtual networks.
26 */
27public class VirtualDeviceId {
28
29 NetworkId networkId;
30 DeviceId deviceId;
31
32 public VirtualDeviceId(NetworkId networkId, DeviceId deviceId) {
33 this.networkId = networkId;
34 this.deviceId = deviceId;
35 }
36
37 public NetworkId networkId() {
38 return networkId;
39 }
40
41 public DeviceId deviceId() {
42 return deviceId;
43 }
44
45 @Override
46 public int hashCode() {
47 return Objects.hash(networkId, deviceId);
48 }
49
50 @Override
51 public boolean equals(Object obj) {
52 if (this == obj) {
53 return true;
54 }
55
56 if (obj instanceof VirtualDeviceId) {
57 VirtualDeviceId that = (VirtualDeviceId) obj;
58 return this.deviceId.equals(that.deviceId) &&
59 this.networkId.equals(that.networkId);
60 }
61 return false;
62 }
63}
64