All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VmWwnChangedEvent Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 VmWwnChangedEvent complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VmWwnChangedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}VmEvent">
 *       <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 = "VmWwnChangedEvent", propOrder = { "oldNodeWwns", "oldPortWwns", "newNodeWwns", "newPortWwns" }) public class VmWwnChangedEvent extends VmEvent { @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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy