
com.vmware.vim.HostVMotionManagerReparentSpec 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 HostVMotionManagerReparentSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVMotionManagerReparentSpec">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="busNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="unitNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVMotionManagerReparentSpec", propOrder = {
"busNumber",
"unitNumber",
"filename"
})
public class HostVMotionManagerReparentSpec
extends DynamicData
{
protected int busNumber;
protected int unitNumber;
@XmlElement(required = true)
protected String filename;
/**
* Gets the value of the busNumber property.
*
*/
public int getBusNumber() {
return busNumber;
}
/**
* Sets the value of the busNumber property.
*
*/
public void setBusNumber(int value) {
this.busNumber = value;
}
/**
* Gets the value of the unitNumber property.
*
*/
public int getUnitNumber() {
return unitNumber;
}
/**
* Sets the value of the unitNumber property.
*
*/
public void setUnitNumber(int value) {
this.unitNumber = value;
}
/**
* Gets the value of the filename property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilename() {
return filename;
}
/**
* Sets the value of the filename property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilename(String value) {
this.filename = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy