blob: 434aa2dbebfe7f65374fe2e6e73131c12788d4a5 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.openstacknetworking.api;
import org.onosproject.event.AbstractEvent;
/**
* Describes virtual instance port event.
*/
public class InstancePortEvent extends AbstractEvent<InstancePortEvent.Type, InstancePort> {
/**
* Instance port event type.
*/
public enum Type {
/**
* Signifies that a new instance port is detected.
*/
OPENSTACK_INSTANCE_PORT_DETECTED,
/**
* Signifies that the instance port is updated.
*/
OPENSTACK_INSTANCE_PORT_UPDATED,
/**
* Signifies that the instance port is disabled.
*/
OPENSTACK_INSTANCE_PORT_VANISHED,
/**
* Signifies that the instance migration is started.
*/
OPENSTACK_INSTANCE_MIGRATION_STARTED,
/**
* Signifies that the instance is migration is ended.
*/
OPENSTACK_INSTANCE_MIGRATION_ENDED,
/**
* Signifies that the instance is terminated.
*/
OPENSTACK_INSTANCE_TERMINATED,
/**
* Signifies that the instance is restarted.
*/
OPENSTACK_INSTANCE_RESTARTED,
}
/**
* Creates an event of a given type for the specified instance port.
*
* @param type instance port event type
* @param instPort instance port
*/
public InstancePortEvent(Type type, InstancePort instPort) {
super(type, instPort);
}
}