![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.UnexpectedFault 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.XmlType;
/**
* Java class for UnexpectedFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UnexpectedFault">
* <complexContent>
* <extension base="{urn:vim25}RuntimeFault">
* <sequence>
* <element name="faultName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fault" type="{urn:vim25}LocalizedMethodFault" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnexpectedFault", propOrder = {
"faultName",
"fault"
})
public class UnexpectedFault
extends RuntimeFault
{
@XmlElement(required = true)
protected String faultName;
protected LocalizedMethodFault fault;
/**
* Gets the value of the faultName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFaultName() {
return faultName;
}
/**
* Sets the value of the faultName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFaultName(String value) {
this.faultName = value;
}
/**
* Gets the value of the fault property.
*
* @return
* possible object is
* {@link LocalizedMethodFault }
*
*/
public LocalizedMethodFault getFault() {
return fault;
}
/**
* Sets the value of the fault property.
*
* @param value
* allowed object is
* {@link LocalizedMethodFault }
*
*/
public void setFault(LocalizedMethodFault value) {
this.fault = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy