Added information specific to streaming digital tapes, like variable block size, partitions, files, etc

This commit is contained in:
2016-10-12 00:06:27 +01:00
parent ab5967fcff
commit 3df79256d4
78 changed files with 2819 additions and 383 deletions

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//
@@ -40,6 +40,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="PhysicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="LogicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;element name="LogicalBlocks" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="VariableBlockSize" type="{}VariableBlockSizeType" minOccurs="0"/>
* &lt;element name="TapeInformation" type="{}TapeInformationType" minOccurs="0"/>
* &lt;element name="Scans" type="{}ScansType" minOccurs="0"/>
* &lt;element name="ATA" type="{}ATAType" minOccurs="0"/>
* &lt;element name="PCI" type="{}PCIType" minOccurs="0"/>
@@ -80,6 +82,8 @@ import javax.xml.bind.annotation.XmlType;
"physicalBlockSize",
"logicalBlockSize",
"logicalBlocks",
"variableBlockSize",
"tapeInformation",
"scans",
"ata",
"pci",
@@ -125,6 +129,10 @@ public class BlockMediaType {
protected int logicalBlockSize;
@XmlElement(name = "LogicalBlocks")
protected long logicalBlocks;
@XmlElement(name = "VariableBlockSize")
protected VariableBlockSizeType variableBlockSize;
@XmlElement(name = "TapeInformation")
protected TapeInformationType tapeInformation;
@XmlElement(name = "Scans")
protected ScansType scans;
@XmlElement(name = "ATA")
@@ -418,6 +426,54 @@ public class BlockMediaType {
this.logicalBlocks = value;
}
/**
* Gets the value of the variableBlockSize property.
*
* @return
* possible object is
* {@link VariableBlockSizeType }
*
*/
public VariableBlockSizeType getVariableBlockSize() {
return variableBlockSize;
}
/**
* Sets the value of the variableBlockSize property.
*
* @param value
* allowed object is
* {@link VariableBlockSizeType }
*
*/
public void setVariableBlockSize(VariableBlockSizeType value) {
this.variableBlockSize = value;
}
/**
* Gets the value of the tapeInformation property.
*
* @return
* possible object is
* {@link TapeInformationType }
*
*/
public TapeInformationType getTapeInformation() {
return tapeInformation;
}
/**
* Sets the value of the tapeInformation property.
*
* @param value
* allowed object is
* {@link TapeInformationType }
*
*/
public void setTapeInformation(TapeInformationType value) {
this.tapeInformation = value;
}
/**
* Gets the value of the scans property.
*

View File

@@ -0,0 +1,78 @@
//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
package generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* <p>Java class for BlockSizeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="BlockSizeType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>int">
* &lt;attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BlockSizeType", propOrder = {
"value"
})
public class BlockSizeType {
@XmlValue
protected int value;
@XmlAttribute(name = "startingBlock", required = true)
protected int startingBlock;
/**
* Gets the value of the value property.
*
*/
public int getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(int value) {
this.value = value;
}
/**
* Gets the value of the startingBlock property.
*
*/
public int getStartingBlock() {
return startingBlock;
}
/**
* Sets the value of the startingBlock property.
*
*/
public void setStartingBlock(int value) {
this.startingBlock = value;
}
}

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//
@@ -224,6 +224,22 @@ public class ObjectFactory {
return new SecureDigitalType();
}
/**
* Create an instance of {@link TapeInformationType }
*
*/
public TapeInformationType createTapeInformationType() {
return new TapeInformationType();
}
/**
* Create an instance of {@link VariableBlockSizeType }
*
*/
public VariableBlockSizeType createVariableBlockSizeType() {
return new VariableBlockSizeType();
}
/**
* Create an instance of {@link BlockTrackType }
*
@@ -248,6 +264,14 @@ public class ObjectFactory {
return new TrackSequenceType();
}
/**
* Create an instance of {@link TapePartitionType }
*
*/
public TapePartitionType createTapePartitionType() {
return new TapePartitionType();
}
/**
* Create an instance of {@link PartitionType }
*
@@ -264,6 +288,14 @@ public class ObjectFactory {
return new CaseScanType();
}
/**
* Create an instance of {@link TapeFileType }
*
*/
public TapeFileType createTapeFileType() {
return new TapeFileType();
}
/**
* Create an instance of {@link ScanType }
*
@@ -400,6 +432,14 @@ public class ObjectFactory {
return new EVPDType();
}
/**
* Create an instance of {@link BlockSizeType }
*
*/
public BlockSizeType createBlockSizeType() {
return new BlockSizeType();
}
/**
* Create an instance of {@link OpticalDiscType }
*

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -0,0 +1,179 @@
//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
package generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Tape file information
*
* <p>Java class for TapeFileType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="TapeFileType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TapeFileType", propOrder = {
"image",
"size",
"sequence",
"startBlock",
"endBlock",
"checksums"
})
public class TapeFileType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Sequence")
protected long sequence;
@XmlElement(name = "StartBlock")
protected long startBlock;
@XmlElement(name = "EndBlock")
protected long endBlock;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
/**
* Gets the value of the image property.
*
* @return
* possible object is
* {@link ImageType }
*
*/
public ImageType getImage() {
return image;
}
/**
* Sets the value of the image property.
*
* @param value
* allowed object is
* {@link ImageType }
*
*/
public void setImage(ImageType value) {
this.image = value;
}
/**
* Gets the value of the size property.
*
*/
public long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(long value) {
this.size = value;
}
/**
* Gets the value of the sequence property.
*
*/
public long getSequence() {
return sequence;
}
/**
* Sets the value of the sequence property.
*
*/
public void setSequence(long value) {
this.sequence = value;
}
/**
* Gets the value of the startBlock property.
*
*/
public long getStartBlock() {
return startBlock;
}
/**
* Sets the value of the startBlock property.
*
*/
public void setStartBlock(long value) {
this.startBlock = value;
}
/**
* Gets the value of the endBlock property.
*
*/
public long getEndBlock() {
return endBlock;
}
/**
* Sets the value of the endBlock property.
*
*/
public void setEndBlock(long value) {
this.endBlock = value;
}
/**
* Gets the value of the checksums property.
*
* @return
* possible object is
* {@link ChecksumsType }
*
*/
public ChecksumsType getChecksums() {
return checksums;
}
/**
* Sets the value of the checksums property.
*
* @param value
* allowed object is
* {@link ChecksumsType }
*
*/
public void setChecksums(ChecksumsType value) {
this.checksums = value;
}
}

View File

@@ -0,0 +1,76 @@
//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
package generated;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for TapeInformationType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="TapeInformationType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Partition" type="{}TapePartitionType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TapeInformationType", propOrder = {
"partition"
})
public class TapeInformationType {
@XmlElement(name = "Partition", required = true)
protected List<TapePartitionType> partition;
/**
* Gets the value of the partition property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the partition property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPartition().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TapePartitionType }
*
*
*/
public List<TapePartitionType> getPartition() {
if (partition == null) {
partition = new ArrayList<TapePartitionType>();
}
return this.partition;
}
}

View File

@@ -0,0 +1,216 @@
//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
package generated;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Partition information
*
* <p>Java class for TapePartitionType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="TapePartitionType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Image" type="{}ImageType"/>
* &lt;element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="Checksums" type="{}ChecksumsType"/>
* &lt;sequence>
* &lt;element name="File" type="{}TapeFileType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TapePartitionType", propOrder = {
"image",
"size",
"sequence",
"startBlock",
"endBlock",
"checksums",
"file"
})
public class TapePartitionType {
@XmlElement(name = "Image", required = true)
protected ImageType image;
@XmlElement(name = "Size")
protected long size;
@XmlElement(name = "Sequence")
protected long sequence;
@XmlElement(name = "StartBlock")
protected long startBlock;
@XmlElement(name = "EndBlock")
protected long endBlock;
@XmlElement(name = "Checksums", required = true)
protected ChecksumsType checksums;
@XmlElement(name = "File", required = true)
protected List<TapeFileType> file;
/**
* Gets the value of the image property.
*
* @return
* possible object is
* {@link ImageType }
*
*/
public ImageType getImage() {
return image;
}
/**
* Sets the value of the image property.
*
* @param value
* allowed object is
* {@link ImageType }
*
*/
public void setImage(ImageType value) {
this.image = value;
}
/**
* Gets the value of the size property.
*
*/
public long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(long value) {
this.size = value;
}
/**
* Gets the value of the sequence property.
*
*/
public long getSequence() {
return sequence;
}
/**
* Sets the value of the sequence property.
*
*/
public void setSequence(long value) {
this.sequence = value;
}
/**
* Gets the value of the startBlock property.
*
*/
public long getStartBlock() {
return startBlock;
}
/**
* Sets the value of the startBlock property.
*
*/
public void setStartBlock(long value) {
this.startBlock = value;
}
/**
* Gets the value of the endBlock property.
*
*/
public long getEndBlock() {
return endBlock;
}
/**
* Sets the value of the endBlock property.
*
*/
public void setEndBlock(long value) {
this.endBlock = value;
}
/**
* Gets the value of the checksums property.
*
* @return
* possible object is
* {@link ChecksumsType }
*
*/
public ChecksumsType getChecksums() {
return checksums;
}
/**
* Sets the value of the checksums property.
*
* @param value
* allowed object is
* {@link ChecksumsType }
*
*/
public void setChecksums(ChecksumsType value) {
this.checksums = value;
}
/**
* Gets the value of the file property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the file property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getFile().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TapeFileType }
*
*
*/
public List<TapeFileType> getFile() {
if (file == null) {
file = new ArrayList<TapeFileType>();
}
return this.file;
}
}

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -0,0 +1,76 @@
//
// 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: 2016.10.12 at 12:03:44 AM WEST
//
package generated;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for VariableBlockSizeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="VariableBlockSizeType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="BlockSize" type="{}BlockSizeType" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VariableBlockSizeType", propOrder = {
"blockSize"
})
public class VariableBlockSizeType {
@XmlElement(name = "BlockSize", required = true)
protected List<BlockSizeType> blockSize;
/**
* Gets the value of the blockSize property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the blockSize property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBlockSize().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BlockSizeType }
*
*
*/
public List<BlockSizeType> getBlockSize() {
if (blockSize == null) {
blockSize = new ArrayList<BlockSizeType>();
}
return this.blockSize;
}
}

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//

View File

@@ -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: 2016.01.29 at 11:21:42 PM WET
// Generated on: 2016.10.12 at 12:03:44 AM WEST
//