com.vmware.vim25.BackupBlobReadFailure 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 BackupBlobReadFailure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BackupBlobReadFailure">
* <complexContent>
* <extension base="{urn:vim25}DvsFault">
* <sequence>
* <element name="entityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="entityType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fault" type="{urn:vim25}LocalizedMethodFault"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BackupBlobReadFailure", propOrder = {
"entityName",
"entityType",
"fault"
})
public class BackupBlobReadFailure
extends DvsFault
{
@XmlElement(required = true)
protected String entityName;
@XmlElement(required = true)
protected String entityType;
@XmlElement(required = true)
protected LocalizedMethodFault fault;
/**
* Gets the value of the entityName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityName() {
return entityName;
}
/**
* Sets the value of the entityName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityName(String value) {
this.entityName = value;
}
/**
* Gets the value of the entityType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityType() {
return entityType;
}
/**
* Sets the value of the entityType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityType(String value) {
this.entityType = 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;
}
}