
com.vmware.vim25.NotSupportedHost Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
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({
NotSupportedHostInCluster.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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy