![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ExpiredFeatureLicense 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for ExpiredFeatureLicense complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExpiredFeatureLicense">
* <complexContent>
* <extension base="{urn:vim25}NotEnoughLicenses">
* <sequence>
* <element name="feature" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExpiredFeatureLicense", propOrder = {
"feature",
"count",
"expirationDate"
})
@XmlSeeAlso({
ExpiredAddonLicense.class,
ExpiredEditionLicense.class
})
public class ExpiredFeatureLicense
extends NotEnoughLicenses
{
@XmlElement(required = true)
protected String feature;
protected int count;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar expirationDate;
/**
* Gets the value of the feature property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFeature() {
return feature;
}
/**
* Sets the value of the feature property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFeature(String value) {
this.feature = value;
}
/**
* Gets the value of the count property.
*
*/
public int getCount() {
return count;
}
/**
* Sets the value of the count property.
*
*/
public void setCount(int value) {
this.count = value;
}
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpirationDate(XMLGregorianCalendar value) {
this.expirationDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy