org.libvirt.event.StartedDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libvirt Show documentation
Show all versions of libvirt Show documentation
Java API for the libvirt C library
The newest version!
package org.libvirt.event;
public enum StartedDetail implements DomainEventDetail {
/**
* Normal startup from boot.
*/
BOOTED,
/**
* Incoming migration from another host.
*/
MIGRATED,
/**
* Restored from a state file.
*/
RESTORED,
/**
* Restored from snapshot
*/
FROM_SNAPSHOT,
/**
* Started due to wakeup event.
*/
WAKEUP,
UNKNOWN
}