![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DuplicateIpDetectedEvent 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 DuplicateIpDetectedEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DuplicateIpDetectedEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="duplicateIP" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="macAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DuplicateIpDetectedEvent", propOrder = {
"duplicateIP",
"macAddress"
})
public class DuplicateIpDetectedEvent
extends HostEvent
{
@XmlElement(required = true)
protected String duplicateIP;
@XmlElement(required = true)
protected String macAddress;
/**
* Gets the value of the duplicateIP property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDuplicateIP() {
return duplicateIP;
}
/**
* Sets the value of the duplicateIP property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDuplicateIP(String value) {
this.duplicateIP = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy