blob: 2d83f81c0048ad1a9b93b36ebb19ed4abc7fed21 [file] [log] [blame]
Yi Tsengf4e13e32017-03-30 15:38:39 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Yi Tsengf4e13e32017-03-30 15:38:39 -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 */
16
17package org.onosproject.vpls.store;
18
19import org.onosproject.event.AbstractEvent;
20import org.onosproject.vpls.api.VplsData;
21
22/**
23 * A class to represent a VPLS store related event.
24 */
25public class VplsStoreEvent extends AbstractEvent<VplsStoreEvent.Type, VplsData> {
26
27 /**
28 * VPLS store event type.
29 */
30 public enum Type {
31 ADD,
32 REMOVE,
33 UPDATE
34 }
35
36 /**
37 * Constructs a store event with given event type and VPLS information.
38 *
39 * @param type the event type
40 * @param subject the VPLS
41 */
42 public VplsStoreEvent(Type type, VplsData subject) {
43 super(type, subject);
44 }
45
46}