blob: 21275f399e5fa021c82665895d7f40f0ff0e0ae2 [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
17package org.onosproject.incubator.store.virtual.impl.primitives;
18
19import org.onosproject.incubator.net.virtual.NetworkId;
Ray Milkey7bf273c2017-09-27 16:15:15 -070020import org.onosproject.net.flow.oldbatch.FlowRuleBatchEvent;
Yoonseon Hane026a7f2017-08-23 06:05:25 +090021
22import java.util.Objects;
23
24/**
25 * A wrapper class to encapsulate flow rule batch event.
26 */
27public class VirtualFlowRuleBatchEvent {
28 NetworkId networkId;
29 FlowRuleBatchEvent event;
30
31 public VirtualFlowRuleBatchEvent(NetworkId networkId, FlowRuleBatchEvent event) {
32 this.networkId = networkId;
33 this.event = event;
34 }
35
36 public NetworkId networkId() {
37 return networkId;
38 }
39
40 public FlowRuleBatchEvent event() {
41 return event;
42 }
43
44
45 @Override
46 public int hashCode() {
47 return Objects.hash(networkId, event);
48 }
49
50 @Override
51 public boolean equals(Object other) {
52 if (this == other) {
53 return true;
54 }
55
56 if (other instanceof VirtualFlowRuleBatchEvent) {
57 VirtualFlowRuleBatchEvent that = (VirtualFlowRuleBatchEvent) other;
58 return this.networkId.equals(that.networkId) &&
59 this.event.equals(that.event);
60 } else {
61 return false;
62 }
63 }
64}
65