com.vmware.vim25.CustomizationAdapterMapping Maven / Gradle / Ivy
package com.vmware.vim25;
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 CustomizationAdapterMapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomizationAdapterMapping">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="macAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="adapter" type="{urn:vim25}CustomizationIPSettings"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomizationAdapterMapping", propOrder = {
"macAddress",
"adapter"
})
public class CustomizationAdapterMapping
extends DynamicData
{
protected String macAddress;
@XmlElement(required = true)
protected CustomizationIPSettings adapter;
/**
* Gets the value of the macAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMacAddress() {
return macAddress;
}
/**
* Sets the value of the macAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMacAddress(String value) {
this.macAddress = value;
}
/**
* Gets the value of the adapter property.
*
* @return
* possible object is
* {@link CustomizationIPSettings }
*
*/
public CustomizationIPSettings getAdapter() {
return adapter;
}
/**
* Sets the value of the adapter property.
*
* @param value
* allowed object is
* {@link CustomizationIPSettings }
*
*/
public void setAdapter(CustomizationIPSettings value) {
this.adapter = value;
}
}