com.vmware.vim25.OvfUnsupportedDeviceBackingInfo 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 OvfUnsupportedDeviceBackingInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OvfUnsupportedDeviceBackingInfo">
* <complexContent>
* <extension base="{urn:vim25}OvfSystemFault">
* <sequence>
* <element name="elementName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="instanceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="deviceName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="backingName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OvfUnsupportedDeviceBackingInfo", propOrder = {
"elementName",
"instanceId",
"deviceName",
"backingName"
})
public class OvfUnsupportedDeviceBackingInfo
extends OvfSystemFault
{
protected String elementName;
protected String instanceId;
@XmlElement(required = true)
protected String deviceName;
protected String backingName;
/**
* Gets the value of the elementName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getElementName() {
return elementName;
}
/**
* Sets the value of the elementName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setElementName(String value) {
this.elementName = value;
}
/**
* Gets the value of the instanceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstanceId() {
return instanceId;
}
/**
* Sets the value of the instanceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstanceId(String value) {
this.instanceId = value;
}
/**
* Gets the value of the deviceName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeviceName() {
return deviceName;
}
/**
* Sets the value of the deviceName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeviceName(String value) {
this.deviceName = value;
}
/**
* Gets the value of the backingName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBackingName() {
return backingName;
}
/**
* Sets the value of the backingName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBackingName(String value) {
this.backingName = value;
}
}