blob: 945772e5960c153a081b1ef92f0e566763e4e7ad [file] [log] [blame]
Hyunsun Moon44aac662017-02-18 02:07:01 +09001/*
2 * Copyright 2017-present Open Networking Laboratory
3 *
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
25 public enum Type {
26
27 /**
28 * Signifies that a new instance port is detected.
29 */
30 OPENSTACK_INSTANCE_PORT_DETECTED,
31
32 /**
33 * Signifies that the instance port is updated.
34 */
35 OPENSTACK_INSTANCE_PORT_UPDATED,
36
37 /**
38 * Signifies that the instance port is disabled.
39 */
40 OPENSTACK_INSTANCE_PORT_VANISHED
41 }
42
43 /**
44 * Creates an event of a given type for the specified instance port.
45 *
46 * @param type instance port event type
47 * @param instPort instance port
48 */
49 public InstancePortEvent(Type type, InstancePort instPort) {
50 super(type, instPort);
51 }
52}