com.vmware.vim25.GuestProcessNotFound Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for GuestProcessNotFound complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GuestProcessNotFound">
* <complexContent>
* <extension base="{urn:vim25}GuestOperationsFault">
* <sequence>
* <element name="pid" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GuestProcessNotFound", propOrder = {
"pid"
})
public class GuestProcessNotFound
extends GuestOperationsFault
{
protected long pid;
/**
* Gets the value of the pid property.
*
*/
public long getPid() {
return pid;
}
/**
* Sets the value of the pid property.
*
*/
public void setPid(long value) {
this.pid = value;
}
}