Added disk type and subtype for block media
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.10 at 06:09:13 AM WET
|
||||
// Generated on: 2015.12.31 at 05:27:48 PM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -55,6 +55,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="Dimensions" type="{}DimensionsType"/>
|
||||
* <element name="FileSystemInformation" type="{}FileSystemInformationType" minOccurs="0"/>
|
||||
* <element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
|
||||
* <element name="DiskType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DiskSubType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -91,7 +93,9 @@ import javax.xml.bind.annotation.XmlType;
|
||||
"copyProtection",
|
||||
"dimensions",
|
||||
"fileSystemInformation",
|
||||
"dumpHardwareArray"
|
||||
"dumpHardwareArray",
|
||||
"diskType",
|
||||
"diskSubType"
|
||||
})
|
||||
public class BlockMediaType {
|
||||
|
||||
@@ -149,6 +153,10 @@ public class BlockMediaType {
|
||||
protected FileSystemInformationType fileSystemInformation;
|
||||
@XmlElement(name = "DumpHardwareArray")
|
||||
protected DumpHardwareArrayType dumpHardwareArray;
|
||||
@XmlElement(name = "DiskType", required = true)
|
||||
protected String diskType;
|
||||
@XmlElement(name = "DiskSubType", required = true)
|
||||
protected String diskSubType;
|
||||
|
||||
/**
|
||||
* Gets the value of the image property.
|
||||
@@ -771,4 +779,52 @@ public class BlockMediaType {
|
||||
this.dumpHardwareArray = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the diskType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiskType() {
|
||||
return diskType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the diskType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiskType(String value) {
|
||||
this.diskType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the diskSubType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiskSubType() {
|
||||
return diskSubType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the diskSubType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiskSubType(String value) {
|
||||
this.diskSubType = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user