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

com.vmware.vim.HostVirtualNicSpec 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.XmlType;


/**
 * 

Java class for HostVirtualNicSpec complex type. * *

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

 * <complexType name="HostVirtualNicSpec">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="ip" type="{urn:vim2}HostIpConfig" minOccurs="0"/>
 *         <element name="mac" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostVirtualNicSpec", propOrder = { "ip", "mac" }) public class HostVirtualNicSpec extends DynamicData { protected HostIpConfig ip; protected String mac; /** * Gets the value of the ip property. * * @return * possible object is * {@link HostIpConfig } * */ public HostIpConfig getIp() { return ip; } /** * Sets the value of the ip property. * * @param value * allowed object is * {@link HostIpConfig } * */ public void setIp(HostIpConfig value) { this.ip = value; } /** * Gets the value of the mac property. * * @return * possible object is * {@link String } * */ public String getMac() { return mac; } /** * Sets the value of the mac property. * * @param value * allowed object is * {@link String } * */ public void setMac(String value) { this.mac = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy