blob: cacbf0d7a1a718a936a942a8f2d496317db74b0c [file] [log] [blame]
jiangruie3d60b12015-11-25 16:27:04 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
jiangruie3d60b12015-11-25 16:27:04 +08003 *
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.vtnrsc.router;
17
18import org.onosproject.event.AbstractEvent;
19import org.onosproject.vtnrsc.Router;
20
21/**
22 * Describes network Router event.
23 */
24public class RouterEvent extends AbstractEvent<RouterEvent.Type, Router> {
25 /**
26 * Type of Router events.
27 */
28 public enum Type {
29 /**
30 * Signifies that router has been created.
31 */
32 ROUTER_PUT,
33 /**
34 * Signifies that router has been deleted.
35 */
36 ROUTER_DELETE
37 }
38
39 /**
40 * Creates an event of a given type and for the specified Router.
41 *
42 * @param type Router event type
43 * @param router Router subject
44 */
45 public RouterEvent(Type type, Router router) {
46 super(type, router);
47 }
48
49 /**
50 * Creates an event of a given type and for the specified Router.
51 *
52 * @param type Router event type
53 * @param router Router subject
54 * @param time occurrence time
55 */
56 public RouterEvent(Type type, Router router, long time) {
57 super(type, router, time);
58 }
59}