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

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

The newest version!

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

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

 * <complexType name="DvsUpgradeRejectedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}DvsEvent">
 *       <sequence>
 *         <element name="productInfo" type="{urn:vim25}DistributedVirtualSwitchProductSpec"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsUpgradeRejectedEvent", propOrder = { "productInfo" }) public class DvsUpgradeRejectedEvent extends DvsEvent { @XmlElement(required = true) protected DistributedVirtualSwitchProductSpec productInfo; /** * Gets the value of the productInfo property. * * @return * possible object is * {@link DistributedVirtualSwitchProductSpec } * */ public DistributedVirtualSwitchProductSpec getProductInfo() { return productInfo; } /** * Sets the value of the productInfo property. * * @param value * allowed object is * {@link DistributedVirtualSwitchProductSpec } * */ public void setProductInfo(DistributedVirtualSwitchProductSpec value) { this.productInfo = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy