![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.OvfUnsupportedPackage Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for OvfUnsupportedPackage complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OvfUnsupportedPackage">
* <complexContent>
* <extension base="{urn:vim25}OvfFault">
* <sequence>
* <element name="lineNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OvfUnsupportedPackage", propOrder = {
"lineNumber"
})
@XmlSeeAlso({
OvfInvalidVmName.class,
OvfNoHostNic.class,
OvfNoSupportedHardwareFamily.class,
OvfUnsupportedAttribute.class,
OvfUnsupportedElement.class,
OvfUnsupportedSubType.class,
OvfUnsupportedType.class
})
public class OvfUnsupportedPackage
extends OvfFault
{
protected Integer lineNumber;
/**
* Gets the value of the lineNumber property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLineNumber() {
return lineNumber;
}
/**
* Sets the value of the lineNumber property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLineNumber(Integer value) {
this.lineNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy