com.vmware.vim25.NotSupportedHost 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 NotSupportedHost complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NotSupportedHost">
* <complexContent>
* <extension base="{urn:vim25}HostConnectFault">
* <sequence>
* <element name="productName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="productVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NotSupportedHost", propOrder = {
"productName",
"productVersion"
})
@XmlSeeAlso({
NonVmwareOuiMacNotSupportedHost.class,
NotSupportedHostForVFlash.class,
NotSupportedHostForVmcp.class,
NotSupportedHostForVmemFile.class,
NotSupportedHostForVsan.class,
NotSupportedHostInCluster.class,
NotSupportedHostInDvs.class,
NotSupportedHostInHACluster.class
})
public class NotSupportedHost
extends HostConnectFault
{
protected String productName;
protected String productVersion;
/**
* Gets the value of the productName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductName() {
return productName;
}
/**
* Sets the value of the productName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductName(String value) {
this.productName = value;
}
/**
* Gets the value of the productVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductVersion() {
return productVersion;
}
/**
* Sets the value of the productVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductVersion(String value) {
this.productVersion = value;
}
}