![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VmWwnConflictEvent 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.XmlType;
/**
* Java class for VmWwnConflictEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmWwnConflictEvent">
* <complexContent>
* <extension base="{urn:vim25}VmEvent">
* <sequence>
* <element name="conflictedVms" type="{urn:vim25}VmEventArgument" maxOccurs="unbounded" minOccurs="0"/>
* <element name="conflictedHosts" type="{urn:vim25}HostEventArgument" maxOccurs="unbounded" minOccurs="0"/>
* <element name="wwn" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmWwnConflictEvent", propOrder = {
"conflictedVms",
"conflictedHosts",
"wwn"
})
public class VmWwnConflictEvent
extends VmEvent
{
protected List conflictedVms;
protected List conflictedHosts;
protected long wwn;
/**
* Gets the value of the conflictedVms 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 conflictedVms property.
*
*
* For example, to add a new item, do as follows:
*
* getConflictedVms().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VmEventArgument }
*
*
*/
public List getConflictedVms() {
if (conflictedVms == null) {
conflictedVms = new ArrayList();
}
return this.conflictedVms;
}
/**
* Gets the value of the conflictedHosts 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 conflictedHosts property.
*
*
* For example, to add a new item, do as follows:
*
* getConflictedHosts().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostEventArgument }
*
*
*/
public List getConflictedHosts() {
if (conflictedHosts == null) {
conflictedHosts = new ArrayList();
}
return this.conflictedHosts;
}
/**
* Gets the value of the wwn property.
*
*/
public long getWwn() {
return wwn;
}
/**
* Sets the value of the wwn property.
*
*/
public void setWwn(long value) {
this.wwn = value;
}
}