blob: 00f15ed143c40fa7f5d3516338d747ca231f6a34 [file] [log] [blame]
Hyunsun Moon44aac662017-02-18 02:07:01 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Hyunsun Moon44aac662017-02-18 02:07:01 +09003 *
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.openstacknetworking.api;
17
18import org.onosproject.event.AbstractEvent;
19
20/**
21 * Describes virtual instance port event.
22 */
23public class InstancePortEvent extends AbstractEvent<InstancePortEvent.Type, InstancePort> {
24
Jian Liea1b9662018-03-02 18:07:32 +090025 /**
26 * Instance port event type.
27 */
Hyunsun Moon44aac662017-02-18 02:07:01 +090028 public enum Type {
29
30 /**
31 * Signifies that a new instance port is detected.
32 */
33 OPENSTACK_INSTANCE_PORT_DETECTED,
34
35 /**
36 * Signifies that the instance port is updated.
37 */
38 OPENSTACK_INSTANCE_PORT_UPDATED,
39
40 /**
41 * Signifies that the instance port is disabled.
42 */
43 OPENSTACK_INSTANCE_PORT_VANISHED
44 }
45
46 /**
47 * Creates an event of a given type for the specified instance port.
48 *
49 * @param type instance port event type
50 * @param instPort instance port
51 */
52 public InstancePortEvent(Type type, InstancePort instPort) {
53 super(type, instPort);
54 }
55}