com.vmware.vim25.PlatformConfigFault Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PlatformConfigFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PlatformConfigFault">
* <complexContent>
* <extension base="{urn:vim25}HostConfigFault">
* <sequence>
* <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PlatformConfigFault", propOrder = {
"text"
})
@XmlSeeAlso({
InvalidBundle.class,
PatchInstallFailed.class,
PatchIntegrityError.class
})
public class PlatformConfigFault
extends HostConfigFault
{
@XmlElement(required = true)
protected String text;
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
}