com.vmware.vim25.NoLicenseEvent 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 NoLicenseEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NoLicenseEvent">
* <complexContent>
* <extension base="{urn:vim25}LicenseEvent">
* <sequence>
* <element name="feature" type="{urn:vim25}LicenseFeatureInfo"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NoLicenseEvent", propOrder = {
"feature"
})
public class NoLicenseEvent
extends LicenseEvent
{
@XmlElement(required = true)
protected LicenseFeatureInfo feature;
/**
* Gets the value of the feature property.
*
* @return
* possible object is
* {@link LicenseFeatureInfo }
*
*/
public LicenseFeatureInfo getFeature() {
return feature;
}
/**
* Sets the value of the feature property.
*
* @param value
* allowed object is
* {@link LicenseFeatureInfo }
*
*/
public void setFeature(LicenseFeatureInfo value) {
this.feature = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy