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

com.vmware.vim25.HostVMotionInfo 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 HostVMotionInfo complex type. * *

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

 * <complexType name="HostVMotionInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="netConfig" type="{urn:vim25}HostVMotionNetConfig" minOccurs="0"/>
 *         <element name="ipConfig" type="{urn:vim25}HostIpConfig" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostVMotionInfo", propOrder = { "netConfig", "ipConfig" }) public class HostVMotionInfo extends DynamicData { protected HostVMotionNetConfig netConfig; protected HostIpConfig ipConfig; /** * Gets the value of the netConfig property. * * @return * possible object is * {@link HostVMotionNetConfig } * */ public HostVMotionNetConfig getNetConfig() { return netConfig; } /** * Sets the value of the netConfig property. * * @param value * allowed object is * {@link HostVMotionNetConfig } * */ public void setNetConfig(HostVMotionNetConfig value) { this.netConfig = value; } /** * Gets the value of the ipConfig property. * * @return * possible object is * {@link HostIpConfig } * */ public HostIpConfig getIpConfig() { return ipConfig; } /** * Sets the value of the ipConfig property. * * @param value * allowed object is * {@link HostIpConfig } * */ public void setIpConfig(HostIpConfig value) { this.ipConfig = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy