blob: 4276cf2f24b34af9249db788238d9cccda67e7f9 [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 */
Jian Li24ec59f2018-05-23 19:01:25 +090043 OPENSTACK_INSTANCE_PORT_VANISHED,
44
45 /**
46 * Signifies that the instance migration is started.
47 */
48 OPENSTACK_INSTANCE_MIGRATION_STARTED,
49
50 /**
51 * Signifies that the instance is migration is ended.
52 */
53 OPENSTACK_INSTANCE_MIGRATION_ENDED
Hyunsun Moon44aac662017-02-18 02:07:01 +090054 }
55
56 /**
57 * Creates an event of a given type for the specified instance port.
58 *
59 * @param type instance port event type
60 * @param instPort instance port
61 */
62 public InstancePortEvent(Type type, InstancePort instPort) {
63 super(type, instPort);
64 }
65}