![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCapabilityNamespaceInfo Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmCapabilityNamespaceInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCapabilityNamespaceInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="info" type="{urn:pbm}PbmExtendedElementDescription" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCapabilityNamespaceInfo", propOrder = {
"version",
"namespace",
"info"
})
public class PbmCapabilityNamespaceInfo
extends DynamicData
{
@XmlElement(required = true)
protected String version;
@XmlElement(required = true)
protected String namespace;
protected PbmExtendedElementDescription info;
/**
* 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 namespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespace() {
return namespace;
}
/**
* Sets the value of the namespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespace(String value) {
this.namespace = value;
}
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link PbmExtendedElementDescription }
*
*/
public PbmExtendedElementDescription getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link PbmExtendedElementDescription }
*
*/
public void setInfo(PbmExtendedElementDescription value) {
this.info = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy