com.vmware.vim25.VAppProductInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VAppProductInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VAppProductInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="classId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="instanceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vendor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fullVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vendorUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="productUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="appUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VAppProductInfo", propOrder = {
"key",
"classId",
"instanceId",
"name",
"vendor",
"version",
"fullVersion",
"vendorUrl",
"productUrl",
"appUrl"
})
public class VAppProductInfo
extends DynamicData
{
protected int key;
protected String classId;
protected String instanceId;
protected String name;
protected String vendor;
protected String version;
protected String fullVersion;
protected String vendorUrl;
protected String productUrl;
protected String appUrl;
/**
* Gets the value of the key property.
*
*/
public int getKey() {
return key;
}
/**
* Sets the value of the key property.
*
*/
public void setKey(int value) {
this.key = value;
}
/**
* Gets the value of the classId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassId() {
return classId;
}
/**
* Sets the value of the classId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassId(String value) {
this.classId = value;
}
/**
* Gets the value of the instanceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstanceId() {
return instanceId;
}
/**
* Sets the value of the instanceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstanceId(String value) {
this.instanceId = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the vendor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVendor() {
return vendor;
}
/**
* Sets the value of the vendor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVendor(String value) {
this.vendor = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the fullVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullVersion() {
return fullVersion;
}
/**
* Sets the value of the fullVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullVersion(String value) {
this.fullVersion = value;
}
/**
* Gets the value of the vendorUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVendorUrl() {
return vendorUrl;
}
/**
* Sets the value of the vendorUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVendorUrl(String value) {
this.vendorUrl = value;
}
/**
* Gets the value of the productUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductUrl() {
return productUrl;
}
/**
* Sets the value of the productUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductUrl(String value) {
this.productUrl = value;
}
/**
* Gets the value of the appUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAppUrl() {
return appUrl;
}
/**
* Sets the value of the appUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAppUrl(String value) {
this.appUrl = value;
}
}