
com.vmware.vim.HostVMotionManagerDestinationState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostVMotionManagerDestinationState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVMotionManagerDestinationState">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="dstId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="dstTask" type="{urn:vim2}ManagedObjectReference"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVMotionManagerDestinationState", propOrder = {
"dstId",
"dstTask"
})
public class HostVMotionManagerDestinationState
extends DynamicData
{
protected int dstId;
@XmlElement(required = true)
protected ManagedObjectReference dstTask;
/**
* Gets the value of the dstId property.
*
*/
public int getDstId() {
return dstId;
}
/**
* Sets the value of the dstId property.
*
*/
public void setDstId(int value) {
this.dstId = value;
}
/**
* Gets the value of the dstTask property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getDstTask() {
return dstTask;
}
/**
* Sets the value of the dstTask property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setDstTask(ManagedObjectReference value) {
this.dstTask = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy