All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim.HostVMotionManagerSpec Maven / Gradle / Ivy

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 HostVMotionManagerSpec complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostVMotionManagerSpec">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="migrationId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="srcIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="dstIp" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="srcUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="dstUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="priority" type="{urn:vim2}VirtualMachineMovePriority"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostVMotionManagerSpec", propOrder = { "migrationId", "srcIp", "dstIp", "srcUuid", "dstUuid", "priority" }) public class HostVMotionManagerSpec extends DynamicData { protected long migrationId; @XmlElement(required = true) protected String srcIp; @XmlElement(required = true) protected String dstIp; @XmlElement(required = true) protected String srcUuid; @XmlElement(required = true) protected String dstUuid; @XmlElement(required = true) protected VirtualMachineMovePriority priority; /** * Gets the value of the migrationId property. * */ public long getMigrationId() { return migrationId; } /** * Sets the value of the migrationId property. * */ public void setMigrationId(long value) { this.migrationId = value; } /** * Gets the value of the srcIp property. * * @return * possible object is * {@link String } * */ public String getSrcIp() { return srcIp; } /** * Sets the value of the srcIp property. * * @param value * allowed object is * {@link String } * */ public void setSrcIp(String value) { this.srcIp = value; } /** * Gets the value of the dstIp property. * * @return * possible object is * {@link String } * */ public String getDstIp() { return dstIp; } /** * Sets the value of the dstIp property. * * @param value * allowed object is * {@link String } * */ public void setDstIp(String value) { this.dstIp = value; } /** * Gets the value of the srcUuid property. * * @return * possible object is * {@link String } * */ public String getSrcUuid() { return srcUuid; } /** * Sets the value of the srcUuid property. * * @param value * allowed object is * {@link String } * */ public void setSrcUuid(String value) { this.srcUuid = value; } /** * Gets the value of the dstUuid property. * * @return * possible object is * {@link String } * */ public String getDstUuid() { return dstUuid; } /** * Sets the value of the dstUuid property. * * @param value * allowed object is * {@link String } * */ public void setDstUuid(String value) { this.dstUuid = value; } /** * Gets the value of the priority property. * * @return * possible object is * {@link VirtualMachineMovePriority } * */ public VirtualMachineMovePriority getPriority() { return priority; } /** * Sets the value of the priority property. * * @param value * allowed object is * {@link VirtualMachineMovePriority } * */ public void setPriority(VirtualMachineMovePriority value) { this.priority = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy