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