blob: 71d093d0aa33871c14162d8ceb352d8a386488ed [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.flow;
Yuta HIGUCHIb25f4da2014-10-16 15:09:26 -070017
18import static com.google.common.base.Preconditions.checkNotNull;
19
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.event.AbstractEvent;
21import org.onosproject.net.DeviceId;
Yuta HIGUCHIb25f4da2014-10-16 15:09:26 -070022
23/**
24 * Describes a device replicainfo event.
25 */
26public class ReplicaInfoEvent extends AbstractEvent<ReplicaInfoEvent.Type, DeviceId> {
27
28 private final ReplicaInfo replicaInfo;
29
30 /**
31 * Types of Replica info event.
32 */
33 public enum Type {
34 /**
35 * Event to notify that master placement should be changed.
36 */
37 MASTER_CHANGED,
38 //
Yuta HIGUCHId4ab8082014-11-03 11:09:09 -080039 BACKUPS_CHANGED,
Yuta HIGUCHIb25f4da2014-10-16 15:09:26 -070040 }
41
42
43 /**
44 * Creates an event of a given type and for the specified device,
45 * and replica info.
46 *
47 * @param type replicainfo event type
48 * @param device event device subject
49 * @param replicaInfo replicainfo
50 */
51 public ReplicaInfoEvent(Type type, DeviceId device, ReplicaInfo replicaInfo) {
52 super(type, device);
53 this.replicaInfo = checkNotNull(replicaInfo);
54 }
55
56 /**
57 * Returns the current replica information for the subject.
58 *
59 * @return replica information for the subject
60 */
61 public ReplicaInfo replicaInfo() {
62 return replicaInfo;
Sho SHIMIZU9f614a42015-09-11 15:32:46 -070063 }
Yuta HIGUCHIb25f4da2014-10-16 15:09:26 -070064}