![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostWwnChangedEvent Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
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 HostWwnChangedEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostWwnChangedEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="oldNodeWwns" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
* <element name="oldPortWwns" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
* <element name="newNodeWwns" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
* <element name="newPortWwns" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostWwnChangedEvent", propOrder = {
"oldNodeWwns",
"oldPortWwns",
"newNodeWwns",
"newPortWwns"
})
public class HostWwnChangedEvent
extends HostEvent
{
@XmlElement(type = Long.class)
protected List oldNodeWwns;
@XmlElement(type = Long.class)
protected List oldPortWwns;
@XmlElement(type = Long.class)
protected List newNodeWwns;
@XmlElement(type = Long.class)
protected List newPortWwns;
/**
* Gets the value of the oldNodeWwns property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the oldNodeWwns property.
*
*
* For example, to add a new item, do as follows:
*
* getOldNodeWwns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getOldNodeWwns() {
if (oldNodeWwns == null) {
oldNodeWwns = new ArrayList();
}
return this.oldNodeWwns;
}
/**
* Gets the value of the oldPortWwns property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the oldPortWwns property.
*
*
* For example, to add a new item, do as follows:
*
* getOldPortWwns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getOldPortWwns() {
if (oldPortWwns == null) {
oldPortWwns = new ArrayList();
}
return this.oldPortWwns;
}
/**
* Gets the value of the newNodeWwns property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the newNodeWwns property.
*
*
* For example, to add a new item, do as follows:
*
* getNewNodeWwns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getNewNodeWwns() {
if (newNodeWwns == null) {
newNodeWwns = new ArrayList();
}
return this.newNodeWwns;
}
/**
* Gets the value of the newPortWwns property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the newPortWwns property.
*
*
* For example, to add a new item, do as follows:
*
* getNewPortWwns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getNewPortWwns() {
if (newPortWwns == null) {
newPortWwns = new ArrayList();
}
return this.newPortWwns;
}
}