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

1763
cicm.xml

File diff suppressed because it is too large Load Diff

106
cicm.xsd
View File

@@ -2833,6 +2833,16 @@
<xs:documentation>User accessible logical blocks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="VariableBlockSizeType" name="VariableBlockSize" maxOccurs="1" minOccurs="0">
<xs:annotation>
<xs:documentation>List size for variable blocks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="TapeInformationType" name="TapeInformation" maxOccurs="1" minOccurs="0">
<xs:annotation>
<xs:documentation>Presents information specific about a digital tape</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="ScansType" name="Scans" minOccurs="0">
<xs:annotation>
<xs:documentation>Media scans</xs:documentation>
@@ -3024,4 +3034,100 @@
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="VariableBlockSizeType">
<xs:sequence>
<xs:element type="BlockSizeType" name="BlockSize" maxOccurs="unbounded" minOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="BlockSizeType">
<xs:simpleContent>
<xs:extension base="xs:int">
<xs:attribute type="xs:int" name="startingBlock" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TapeInformationType">
<xs:sequence>
<xs:element type="TapePartitionType" name="Partition" maxOccurs="unbounded" minOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TapePartitionType">
<xs:annotation>
<xs:documentation>Partition information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element type="ImageType" name="Image" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File containing partition dump, and format, binary, yranib, or audio/video container
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Size of partition dump in bytes</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="Sequence" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Partition sequence</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="StartBlock" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Partition start block</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="EndBlock" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Partition end block</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="ChecksumsType" name="Checksums" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Checksums of track dump</xs:documentation>
</xs:annotation>
</xs:element>
<xs:sequence>
<xs:element type="TapeFileType" name="File" maxOccurs="unbounded" minOccurs="1"/>
</xs:sequence>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TapeFileType">
<xs:annotation>
<xs:documentation>Tape file information</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element type="ImageType" name="Image" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File containing file dump, and format, binary, yranib, or audio/video container
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Size of file in bytes</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="Sequence" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File sequence</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="StartBlock" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File start block</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="xs:long" name="EndBlock" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>File end block</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element type="ChecksumsType" name="Checksums" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Checksums of track dump</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>

View File

@@ -1,7 +1,7 @@
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 4.0.30319.17020
// Mono Runtime Version: 4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -3643,6 +3643,215 @@ namespace Schemas {
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class TapeFileType {
private ImageType imageField;
private long sizeField;
private long sequenceField;
private long startBlockField;
private long endBlockField;
private ChecksumType[] checksumsField;
/// <remarks/>
public ImageType Image {
get {
return this.imageField;
}
set {
this.imageField = value;
}
}
/// <remarks/>
public long Size {
get {
return this.sizeField;
}
set {
this.sizeField = value;
}
}
/// <remarks/>
public long Sequence {
get {
return this.sequenceField;
}
set {
this.sequenceField = value;
}
}
/// <remarks/>
public long StartBlock {
get {
return this.startBlockField;
}
set {
this.startBlockField = value;
}
}
/// <remarks/>
public long EndBlock {
get {
return this.endBlockField;
}
set {
this.endBlockField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Checksum", IsNullable=false)]
public ChecksumType[] Checksums {
get {
return this.checksumsField;
}
set {
this.checksumsField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class TapePartitionType {
private ImageType imageField;
private long sizeField;
private long sequenceField;
private long startBlockField;
private long endBlockField;
private ChecksumType[] checksumsField;
private TapeFileType[] fileField;
/// <remarks/>
public ImageType Image {
get {
return this.imageField;
}
set {
this.imageField = value;
}
}
/// <remarks/>
public long Size {
get {
return this.sizeField;
}
set {
this.sizeField = value;
}
}
/// <remarks/>
public long Sequence {
get {
return this.sequenceField;
}
set {
this.sequenceField = value;
}
}
/// <remarks/>
public long StartBlock {
get {
return this.startBlockField;
}
set {
this.startBlockField = value;
}
}
/// <remarks/>
public long EndBlock {
get {
return this.endBlockField;
}
set {
this.endBlockField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Checksum", IsNullable=false)]
public ChecksumType[] Checksums {
get {
return this.checksumsField;
}
set {
this.checksumsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("File")]
public TapeFileType[] File {
get {
return this.fileField;
}
set {
this.fileField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class BlockSizeType {
private int startingBlockField;
private int valueField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public int startingBlock {
get {
return this.startingBlockField;
}
set {
this.startingBlockField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public int Value {
get {
return this.valueField;
}
set {
this.valueField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0")]
[System.SerializableAttribute()]
@@ -3674,6 +3883,10 @@ namespace Schemas {
private long logicalBlocksField;
private BlockSizeType[] variableBlockSizeField;
private TapePartitionType[] tapeInformationField;
private ScansType scansField;
private ATAType aTAField;
@@ -3837,6 +4050,28 @@ namespace Schemas {
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("BlockSize", IsNullable=false)]
public BlockSizeType[] VariableBlockSize {
get {
return this.variableBlockSizeField;
}
set {
this.variableBlockSizeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Partition", IsNullable=false)]
public TapePartitionType[] TapeInformation {
get {
return this.tapeInformationField;
}
set {
this.tapeInformationField = value;
}
}
/// <remarks/>
public ScansType Scans {
get {

View File

@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------
' <autogenerated>
' This code was generated by a tool.
' Mono Runtime Version: 4.0.30319.17020
' Mono Runtime Version: 4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
@@ -3646,6 +3646,215 @@ Namespace Schemas
End Property
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class TapeFileType
Private imageField As ImageType
Private sizeField As Long
Private sequenceField As Long
Private startBlockField As Long
Private endBlockField As Long
Private checksumsField As ChecksumType()
'''<remarks/>
Public Property Image() As ImageType
Get
Return Me.imageField
End Get
Set
Me.imageField = Value
End Set
End Property
'''<remarks/>
Public Property Size() As Long
Get
Return Me.sizeField
End Get
Set
Me.sizeField = Value
End Set
End Property
'''<remarks/>
Public Property Sequence() As Long
Get
Return Me.sequenceField
End Get
Set
Me.sequenceField = Value
End Set
End Property
'''<remarks/>
Public Property StartBlock() As Long
Get
Return Me.startBlockField
End Get
Set
Me.startBlockField = Value
End Set
End Property
'''<remarks/>
Public Property EndBlock() As Long
Get
Return Me.endBlockField
End Get
Set
Me.endBlockField = Value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlArrayItemAttribute("Checksum", IsNullable:=false)> _
Public Property Checksums() As ChecksumType()
Get
Return Me.checksumsField
End Get
Set
Me.checksumsField = Value
End Set
End Property
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class TapePartitionType
Private imageField As ImageType
Private sizeField As Long
Private sequenceField As Long
Private startBlockField As Long
Private endBlockField As Long
Private checksumsField As ChecksumType()
Private fileField As TapeFileType()
'''<remarks/>
Public Property Image() As ImageType
Get
Return Me.imageField
End Get
Set
Me.imageField = Value
End Set
End Property
'''<remarks/>
Public Property Size() As Long
Get
Return Me.sizeField
End Get
Set
Me.sizeField = Value
End Set
End Property
'''<remarks/>
Public Property Sequence() As Long
Get
Return Me.sequenceField
End Get
Set
Me.sequenceField = Value
End Set
End Property
'''<remarks/>
Public Property StartBlock() As Long
Get
Return Me.startBlockField
End Get
Set
Me.startBlockField = Value
End Set
End Property
'''<remarks/>
Public Property EndBlock() As Long
Get
Return Me.endBlockField
End Get
Set
Me.endBlockField = Value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlArrayItemAttribute("Checksum", IsNullable:=false)> _
Public Property Checksums() As ChecksumType()
Get
Return Me.checksumsField
End Get
Set
Me.checksumsField = Value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute("File")> _
Public Property File() As TapeFileType()
Get
Return Me.fileField
End Get
Set
Me.fileField = Value
End Set
End Property
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0"), _
System.SerializableAttribute(), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class BlockSizeType
Private startingBlockField As Integer
Private valueField As Integer
'''<remarks/>
<System.Xml.Serialization.XmlAttributeAttribute()> _
Public Property startingBlock() As Integer
Get
Return Me.startingBlockField
End Get
Set
Me.startingBlockField = Value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlTextAttribute()> _
Public Property Value() As Integer
Get
Return Me.valueField
End Get
Set
Me.valueField = Value
End Set
End Property
End Class
'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "0.0.0.0"), _
System.SerializableAttribute(), _
@@ -3677,6 +3886,10 @@ Namespace Schemas
Private logicalBlocksField As Long
Private variableBlockSizeField As BlockSizeType()
Private tapeInformationField As TapePartitionType()
Private scansField As ScansType
Private aTAField As ATAType
@@ -3840,6 +4053,28 @@ Namespace Schemas
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlArrayItemAttribute("BlockSize", IsNullable:=false)> _
Public Property VariableBlockSize() As BlockSizeType()
Get
Return Me.variableBlockSizeField
End Get
Set
Me.variableBlockSizeField = Value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlArrayItemAttribute("Partition", IsNullable:=false)> _
Public Property TapeInformation() As TapePartitionType()
Get
Return Me.tapeInformationField
End Get
Set
Me.tapeInformationField = Value
End Set
End Property
'''<remarks/>
Public Property Scans() As ScansType
Get

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
//