com.vmware.vim25.ExtExtendedProductInfo 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 ExtExtendedProductInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExtExtendedProductInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="companyUrl" 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="managementUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="self" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExtExtendedProductInfo", propOrder = {
"companyUrl",
"productUrl",
"managementUrl",
"self"
})
public class ExtExtendedProductInfo
extends DynamicData
{
protected String companyUrl;
protected String productUrl;
protected String managementUrl;
protected ManagedObjectReference self;
/**
* Gets the value of the companyUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCompanyUrl() {
return companyUrl;
}
/**
* Sets the value of the companyUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCompanyUrl(String value) {
this.companyUrl = 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 managementUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getManagementUrl() {
return managementUrl;
}
/**
* Sets the value of the managementUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setManagementUrl(String value) {
this.managementUrl = value;
}
/**
* Gets the value of the self property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getSelf() {
return self;
}
/**
* Sets the value of the self property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setSelf(ManagedObjectReference value) {
this.self = value;
}
}