Initial commit
This commit is contained in:
9
.externalToolBuilders/New_Builder.launch
Normal file
9
.externalToolBuilders/New_Builder.launch
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType">
|
||||
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${workspace}"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/CICMMetadata/build.sh}"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,"/>
|
||||
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/CICMMetadata}"/>
|
||||
</launchConfiguration>
|
||||
21
.project
Normal file
21
.project
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>CICMMetadata</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
|
||||
<triggers>full,incremental,</triggers>
|
||||
<arguments>
|
||||
<dictionary>
|
||||
<key>LaunchConfigHandle</key>
|
||||
<value><project>/.externalToolBuilders/New_Builder.launch</value>
|
||||
</dictionary>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
11
.settings/org.eclipse.wst.xsl.core.prefs
Normal file
11
.settings/org.eclipse.wst.xsl.core.prefs
Normal file
@@ -0,0 +1,11 @@
|
||||
CHECK_CALL_TEMPLATES=2
|
||||
CHECK_XPATHS=2
|
||||
CIRCULAR_REF=2
|
||||
DUPLICATE_PARAMETER=2
|
||||
EMPTY_PARAM=1
|
||||
MISSING_INCLUDE=2
|
||||
MISSING_PARAM=1
|
||||
NAME_ATTRIBUTE_EMPTY=2
|
||||
NAME_ATTRIBUTE_MISSING=2
|
||||
TEMPLATE_CONFLICT=2
|
||||
eclipse.preferences.version=1
|
||||
22
README.md
Normal file
22
README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
Canary Islands Computer Museum
|
||||
==============================
|
||||
Digital Asset Metadata Sidecar
|
||||
==============================
|
||||
|
||||
This repository contains a XML Schema defining a digital asset metadata sidecar.
|
||||
The idea of this sidecar is to accompany any kind of digital asset that may be archived in a computer museum.
|
||||
|
||||
Also the repository contains autogenerated C#, VisualBasic.NET and Java code.
|
||||
|
||||
The sidecar schema is under public domain as long as any change you made is compatible and upstreamed,
|
||||
or you change the root element type from CICMMetadata to anything else.
|
||||
Besides that, you can use it anywhere.
|
||||
|
||||
If you want to give due credit, this schema is created by Natalia Portillo.
|
||||
|
||||
The schema is set-oriented, that is, each sidecar file should accompany a single set, that can contain one or
|
||||
more of the following elements (or newer ones):
|
||||
* Magazines
|
||||
* Books
|
||||
* User manuals, user guides, installation guides, instruction manuals
|
||||
* Optical discs (CD and successors)
|
||||
26
build.sh
Executable file
26
build.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
xsd=`which xsd`
|
||||
xjc=`which xjc`
|
||||
if [ -x "$xsd" ]
|
||||
then
|
||||
mkdir -p dotnet
|
||||
echo Building C# code...
|
||||
xsd cicm.xsd /classes /language:CS > /dev/null
|
||||
if [ -e "cicm.cs" ]
|
||||
then
|
||||
mv cicm.cs dotnet/
|
||||
fi
|
||||
echo Building VB.NET code...
|
||||
xsd cicm.xsd /classes /language:VB > /dev/null
|
||||
if [ -e "cicm.vb" ]
|
||||
then
|
||||
mv cicm.vb dotnet/
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -x "$xjc" ]
|
||||
then
|
||||
mkdir -p java
|
||||
echo Building Java code...
|
||||
xjc -d java cicm.xsd > /dev/null
|
||||
fi
|
||||
243
cicm.xml
Normal file
243
cicm.xml
Normal file
@@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CICMMetadata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cicm.xsd">
|
||||
<Developer>Developer</Developer>
|
||||
<Publisher>Publisher</Publisher>
|
||||
<Author>Author</Author>
|
||||
<Performer>Performer</Performer>
|
||||
<Name>Name</Name>
|
||||
<Version>Version</Version>
|
||||
<ReleaseType>Retail</ReleaseType>
|
||||
<ReleaseDate>2001-01-01</ReleaseDate>
|
||||
<Barcodes>
|
||||
<Barcode type="aztec">Barcode</Barcode>
|
||||
</Barcodes>
|
||||
<PartNumber>PartNumber</PartNumber>
|
||||
<SerialNumber>SerialNumber</SerialNumber>
|
||||
<Keywords>
|
||||
<Keyword>Keyword</Keyword>
|
||||
</Keywords>
|
||||
<Magazine>
|
||||
<Barcodes>
|
||||
<Barcode type="aztec">Barcode</Barcode>
|
||||
</Barcodes>
|
||||
<Cover>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
<Thumbnail>MA==</Thumbnail>
|
||||
</Cover>
|
||||
<Name>Name</Name>
|
||||
<Editorial>Editorial</Editorial>
|
||||
<PublicationDate>2001-01-01</PublicationDate>
|
||||
<Number>0</Number>
|
||||
<Language>
|
||||
<Language>aar</Language>
|
||||
</Language>
|
||||
<Pages>0</Pages>
|
||||
<PageSize>PageSize</PageSize>
|
||||
<Scan>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</Scan>
|
||||
</Magazine>
|
||||
<Book>
|
||||
<Barcodes>
|
||||
<Barcode type="aztec">Barcode</Barcode>
|
||||
</Barcodes>
|
||||
<Cover>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
<Thumbnail>MA==</Thumbnail>
|
||||
</Cover>
|
||||
<Name>Name</Name>
|
||||
<Editorial>Editorial</Editorial>
|
||||
<Author>Author</Author>
|
||||
<PublicationDate>2001-01-01</PublicationDate>
|
||||
<Language>
|
||||
<Language>aar</Language>
|
||||
</Language>
|
||||
<Pages>0</Pages>
|
||||
<PageSize>PageSize</PageSize>
|
||||
<Scan>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</Scan>
|
||||
</Book>
|
||||
<Categories>
|
||||
<Category>Category</Category>
|
||||
</Categories>
|
||||
<Subcategories>
|
||||
<Subcategory>Subcategory</Subcategory>
|
||||
</Subcategories>
|
||||
<Languages>
|
||||
<Language>aar</Language>
|
||||
</Languages>
|
||||
<Systems>
|
||||
<System>System</System>
|
||||
</Systems>
|
||||
<Architectures>
|
||||
<Architecture>i86</Architecture>
|
||||
</Architectures>
|
||||
<RequiredOperatingSystems>
|
||||
<RequiredOperatingSystem>
|
||||
<Name>Name</Name>
|
||||
<Version>Version</Version>
|
||||
</RequiredOperatingSystem>
|
||||
</RequiredOperatingSystems>
|
||||
<UserManual>
|
||||
<Language>
|
||||
<Language>aar</Language>
|
||||
</Language>
|
||||
<Pages>0</Pages>
|
||||
<PageSize>PageSize</PageSize>
|
||||
<Scan>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</Scan>
|
||||
</UserManual>
|
||||
<OpticalDisc>
|
||||
<Image format="" offset="0">Image</Image>
|
||||
<Size>0</Size>
|
||||
<Sequence>
|
||||
<DiscTitle>DiscTitle</DiscTitle>
|
||||
<Disc>0</Disc>
|
||||
<TotalDiscs>1</TotalDiscs>
|
||||
<Side>1</Side>
|
||||
</Sequence>
|
||||
<Layers type="PTP">
|
||||
<Sectors layer="0">0</Sectors>
|
||||
</Layers>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
<RingCode layer="0">RingCode</RingCode>
|
||||
<MasteringSID layer="0">MasteringSID</MasteringSID>
|
||||
<Toolstamp layer="0">Toolstamp</Toolstamp>
|
||||
<MouldSID layer="0">MouldSID</MouldSID>
|
||||
<MouldText layer="0">MouldText</MouldText>
|
||||
<DiscType>DiscType</DiscType>
|
||||
<DiscSubType>DiscSubType</DiscSubType>
|
||||
<Offset>0</Offset>
|
||||
<Tracks>0</Tracks>
|
||||
<Sessions>0</Sessions>
|
||||
<CopyProtection>CopyProtection</CopyProtection>
|
||||
<Dimensions>
|
||||
<Thickness>0.0</Thickness>
|
||||
</Dimensions>
|
||||
<Case>
|
||||
<CaseType>jewel</CaseType>
|
||||
<Scans/>
|
||||
</Case>
|
||||
<Scans/>
|
||||
<PFI>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</PFI>
|
||||
<DMI>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</DMI>
|
||||
<CMI>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</CMI>
|
||||
<BCA>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</BCA>
|
||||
<ATIP>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</ATIP>
|
||||
<PMA>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</PMA>
|
||||
<LeadIn session="1">
|
||||
<Image>Image</Image>
|
||||
<Size>Size</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</LeadIn>
|
||||
<LeadOut session="1">
|
||||
<Image>Image</Image>
|
||||
<Size>Size</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</LeadOut>
|
||||
<XboxSecuritySectors>
|
||||
<SecuritySectors>
|
||||
<Start>0</Start>
|
||||
<End>0</End>
|
||||
</SecuritySectors>
|
||||
</XboxSecuritySectors>
|
||||
<PS3Encryption>
|
||||
<Key>Key</Key>
|
||||
<Serial>Serial</Serial>
|
||||
</PS3Encryption>
|
||||
<Track>
|
||||
<Image format="" offset="0">Image</Image>
|
||||
<Size>Size</Size>
|
||||
<Sequence>
|
||||
<TrackNumber>0</TrackNumber>
|
||||
<Session>1</Session>
|
||||
</Sequence>
|
||||
<StartSector>0</StartSector>
|
||||
<EndSector>0</EndSector>
|
||||
<TrackType>audio</TrackType>
|
||||
<BytesPerSector>0</BytesPerSector>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</Track>
|
||||
<DumpHardwareArray>
|
||||
<DumpHardware>
|
||||
<Manufacturer>Manufacturer</Manufacturer>
|
||||
<Model>Model</Model>
|
||||
<Revision>Revision</Revision>
|
||||
<Firmware>Firmware</Firmware>
|
||||
<Serial>Serial</Serial>
|
||||
<Extents>
|
||||
<Extent>
|
||||
<Start>0</Start>
|
||||
<End>0</End>
|
||||
</Extent>
|
||||
</Extents>
|
||||
<Software>
|
||||
<Name>Name</Name>
|
||||
<Version>Version</Version>
|
||||
<OperatingSystem>OperatingSystem</OperatingSystem>
|
||||
</Software>
|
||||
</DumpHardware>
|
||||
</DumpHardwareArray>
|
||||
</OpticalDisc>
|
||||
</CICMMetadata>
|
||||
5567
dotnet/cicm.cs
Normal file
5567
dotnet/cicm.cs
Normal file
File diff suppressed because it is too large
Load Diff
5570
dotnet/cicm.vb
Normal file
5570
dotnet/cicm.vb
Normal file
File diff suppressed because it is too large
Load Diff
121
java/generated/ArchitecturesType.java
Normal file
121
java/generated/ArchitecturesType.java
Normal file
@@ -0,0 +1,121 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* CPU architectures this set is intended to be run on
|
||||
*
|
||||
* <p>Java class for ArchitecturesType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ArchitecturesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Architecture">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="i86"/>
|
||||
* <enumeration value="ia32"/>
|
||||
* <enumeration value="ia64"/>
|
||||
* <enumeration value="amd64"/>
|
||||
* <enumeration value="4004"/>
|
||||
* <enumeration value="4040"/>
|
||||
* <enumeration value="8080"/>
|
||||
* <enumeration value="8008"/>
|
||||
* <enumeration value="8085"/>
|
||||
* <enumeration value="8051"/>
|
||||
* <enumeration value="i860"/>
|
||||
* <enumeration value="i960"/>
|
||||
* <enumeration value="apx432"/>
|
||||
* <enumeration value="m68k"/>
|
||||
* <enumeration value="ppc"/>
|
||||
* <enumeration value="ppc64"/>
|
||||
* <enumeration value="x32"/>
|
||||
* <enumeration value="sparc"/>
|
||||
* <enumeration value="sparc64"/>
|
||||
* <enumeration value="arm"/>
|
||||
* <enumeration value="aarch64"/>
|
||||
* <enumeration value="avr"/>
|
||||
* <enumeration value="pic"/>
|
||||
* <enumeration value="msp430"/>
|
||||
* <enumeration value="z80"/>
|
||||
* <enumeration value="65816"/>
|
||||
* <enumeration value="sh"/>
|
||||
* <enumeration value="sh1"/>
|
||||
* <enumeration value="sh2"/>
|
||||
* <enumeration value="sh3"/>
|
||||
* <enumeration value="sh5"/>
|
||||
* <enumeration value="sh4"/>
|
||||
* <enumeration value="m6800"/>
|
||||
* <enumeration value="6502"/>
|
||||
* <enumeration value="axp"/>
|
||||
* <enumeration value="parisc"/>
|
||||
* <enumeration value="mips32"/>
|
||||
* <enumeration value="mips64"/>
|
||||
* <enumeration value="s360"/>
|
||||
* <enumeration value="s370"/>
|
||||
* <enumeration value="esa390"/>
|
||||
* <enumeration value="zarch"/>
|
||||
* <enumeration value="pdp11"/>
|
||||
* <enumeration value="vax"/>
|
||||
* <enumeration value="power"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ArchitecturesType", propOrder = {
|
||||
"architecture"
|
||||
})
|
||||
public class ArchitecturesType {
|
||||
|
||||
@XmlElement(name = "Architecture", required = true)
|
||||
protected String architecture;
|
||||
|
||||
/**
|
||||
* Gets the value of the architecture property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getArchitecture() {
|
||||
return architecture;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the architecture property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setArchitecture(String value) {
|
||||
this.architecture = value;
|
||||
}
|
||||
|
||||
}
|
||||
129
java/generated/BarcodeType.java
Normal file
129
java/generated/BarcodeType.java
Normal file
@@ -0,0 +1,129 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 BarcodeType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BarcodeType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="type" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aztec"/>
|
||||
* <enumeration value="codabar"/>
|
||||
* <enumeration value="code11"/>
|
||||
* <enumeration value="code128"/>
|
||||
* <enumeration value="code39"/>
|
||||
* <enumeration value="code93"/>
|
||||
* <enumeration value="cpcbinary"/>
|
||||
* <enumeration value="ezcode"/>
|
||||
* <enumeration value="fim"/>
|
||||
* <enumeration value="itf"/>
|
||||
* <enumeration value="itf14"/>
|
||||
* <enumeration value="ean13"/>
|
||||
* <enumeration value="ean8"/>
|
||||
* <enumeration value="maxicode"/>
|
||||
* <enumeration value="isbn"/>
|
||||
* <enumeration value="isrc"/>
|
||||
* <enumeration value="msi"/>
|
||||
* <enumeration value="tof"/>
|
||||
* <enumeration value="shotcode"/>
|
||||
* <enumeration value="rm4scc"/>
|
||||
* <enumeration value="qr"/>
|
||||
* <enumeration value="ean5"/>
|
||||
* <enumeration value="ean2"/>
|
||||
* <enumeration value="qr"/>
|
||||
* <enumeration value="postnet"/>
|
||||
* <enumeration value="postbar"/>
|
||||
* <enumeration value="plessey"/>
|
||||
* <enumeration value="pharmacode"/>
|
||||
* <enumeration value="pdf417"/>
|
||||
* <enumeration value="patchcode"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BarcodeType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class BarcodeType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "type", required = true)
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
78
java/generated/BarcodesType.java
Normal file
78
java/generated/BarcodesType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Barcodes for this release
|
||||
*
|
||||
* <p>Java class for BarcodesType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BarcodesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Barcode" type="{}BarcodeType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BarcodesType", propOrder = {
|
||||
"barcode"
|
||||
})
|
||||
public class BarcodesType {
|
||||
|
||||
@XmlElement(name = "Barcode", required = true)
|
||||
protected List<BarcodeType> barcode;
|
||||
|
||||
/**
|
||||
* Gets the value of the barcode 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 barcode property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBarcode().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BarcodeType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BarcodeType> getBarcode() {
|
||||
if (barcode == null) {
|
||||
barcode = new ArrayList<BarcodeType>();
|
||||
}
|
||||
return this.barcode;
|
||||
}
|
||||
|
||||
}
|
||||
324
java/generated/BookType.java
Normal file
324
java/generated/BookType.java
Normal file
@@ -0,0 +1,324 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for BookType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BookType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Barcodes" type="{}BarcodesType"/>
|
||||
* <element name="Cover" type="{}CoverType" minOccurs="0"/>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BookType", propOrder = {
|
||||
"barcodes",
|
||||
"cover",
|
||||
"name",
|
||||
"editorial",
|
||||
"author",
|
||||
"publicationDate",
|
||||
"language",
|
||||
"pages",
|
||||
"pageSize",
|
||||
"scan"
|
||||
})
|
||||
public class BookType {
|
||||
|
||||
@XmlElement(name = "Barcodes", required = true)
|
||||
protected BarcodesType barcodes;
|
||||
@XmlElement(name = "Cover")
|
||||
protected CoverType cover;
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Editorial")
|
||||
protected String editorial;
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "PublicationDate")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar publicationDate;
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected Integer pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the barcodes property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the barcodes property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cover property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType getCover() {
|
||||
return cover;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the cover property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public void setCover(CoverType value) {
|
||||
this.cover = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the editorial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEditorial() {
|
||||
return editorial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the editorial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEditorial(String value) {
|
||||
this.editorial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the author property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the author property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the publicationDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getPublicationDate() {
|
||||
return publicationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the publicationDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setPublicationDate(XMLGregorianCalendar value) {
|
||||
this.publicationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pages property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pages property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setPages(Integer value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pageSize property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pageSize property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
159
java/generated/BorderType.java
Normal file
159
java/generated/BorderType.java
Normal file
@@ -0,0 +1,159 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for BorderType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BorderType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BorderType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class BorderType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
protected String size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "session")
|
||||
protected Integer session;
|
||||
|
||||
/**
|
||||
* Gets the value of the image property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the image property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setImage(String value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the size property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the size property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSize(String value) {
|
||||
this.size = 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 session property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the session property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setSession(Integer value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
}
|
||||
713
java/generated/CICMMetadataType.java
Normal file
713
java/generated/CICMMetadataType.java
Normal file
@@ -0,0 +1,713 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CICMMetadataType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CICMMetadataType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Developer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Publisher" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Performer" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ReleaseType" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Retail"/>
|
||||
* <enumeration value="Bundle"/>
|
||||
* <enumeration value="Coverdisc"/>
|
||||
* <enumeration value="Subscription"/>
|
||||
* <enumeration value="Demo"/>
|
||||
* <enumeration value="OEM"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="ReleaseDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Keywords" type="{}KeywordsType" minOccurs="0"/>
|
||||
* <element name="Magazine" type="{}MagazineType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Book" type="{}BookType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Categories" type="{}CategoriesType" minOccurs="0"/>
|
||||
* <element name="Subcategories" type="{}SubcategoriesType" minOccurs="0"/>
|
||||
* <element name="Languages" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Systems" type="{}SystemsType" minOccurs="0"/>
|
||||
* <element name="Architectures" type="{}ArchitecturesType" minOccurs="0"/>
|
||||
* <element name="RequiredOperatingSystems" type="{}RequiredOperatingSystemsType" minOccurs="0"/>
|
||||
* <element name="UserManual" type="{}UserManualType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CICMMetadataType", propOrder = {
|
||||
"developer",
|
||||
"publisher",
|
||||
"author",
|
||||
"performer",
|
||||
"name",
|
||||
"version",
|
||||
"releaseType",
|
||||
"releaseDate",
|
||||
"barcodes",
|
||||
"partNumber",
|
||||
"serialNumber",
|
||||
"keywords",
|
||||
"magazine",
|
||||
"book",
|
||||
"categories",
|
||||
"subcategories",
|
||||
"languages",
|
||||
"systems",
|
||||
"architectures",
|
||||
"requiredOperatingSystems",
|
||||
"userManual",
|
||||
"opticalDisc"
|
||||
})
|
||||
public class CICMMetadataType {
|
||||
|
||||
@XmlElement(name = "Developer")
|
||||
protected List<String> developer;
|
||||
@XmlElement(name = "Publisher")
|
||||
protected List<String> publisher;
|
||||
@XmlElement(name = "Author")
|
||||
protected List<String> author;
|
||||
@XmlElement(name = "Performer")
|
||||
protected List<String> performer;
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version")
|
||||
protected String version;
|
||||
@XmlElement(name = "ReleaseType")
|
||||
protected String releaseType;
|
||||
@XmlElement(name = "ReleaseDate")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar releaseDate;
|
||||
@XmlElement(name = "Barcodes")
|
||||
protected BarcodesType barcodes;
|
||||
@XmlElement(name = "PartNumber")
|
||||
protected String partNumber;
|
||||
@XmlElement(name = "SerialNumber")
|
||||
protected String serialNumber;
|
||||
@XmlElement(name = "Keywords")
|
||||
protected KeywordsType keywords;
|
||||
@XmlElement(name = "Magazine")
|
||||
protected List<MagazineType> magazine;
|
||||
@XmlElement(name = "Book")
|
||||
protected List<BookType> book;
|
||||
@XmlElement(name = "Categories")
|
||||
protected CategoriesType categories;
|
||||
@XmlElement(name = "Subcategories")
|
||||
protected SubcategoriesType subcategories;
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlElement(name = "Systems")
|
||||
protected SystemsType systems;
|
||||
@XmlElement(name = "Architectures")
|
||||
protected ArchitecturesType architectures;
|
||||
@XmlElement(name = "RequiredOperatingSystems")
|
||||
protected RequiredOperatingSystemsType requiredOperatingSystems;
|
||||
@XmlElement(name = "UserManual")
|
||||
protected List<UserManualType> userManual;
|
||||
@XmlElement(name = "OpticalDisc")
|
||||
protected List<OpticalDiscType> opticalDisc;
|
||||
|
||||
/**
|
||||
* Gets the value of the developer 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 developer property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDeveloper().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getDeveloper() {
|
||||
if (developer == null) {
|
||||
developer = new ArrayList<String>();
|
||||
}
|
||||
return this.developer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the publisher 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 publisher property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPublisher().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getPublisher() {
|
||||
if (publisher == null) {
|
||||
publisher = new ArrayList<String>();
|
||||
}
|
||||
return this.publisher;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the author 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 author property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAuthor().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getAuthor() {
|
||||
if (author == null) {
|
||||
author = new ArrayList<String>();
|
||||
}
|
||||
return this.author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the performer 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 performer property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPerformer().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getPerformer() {
|
||||
if (performer == null) {
|
||||
performer = new ArrayList<String>();
|
||||
}
|
||||
return this.performer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the version property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the version property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the releaseType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getReleaseType() {
|
||||
return releaseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the releaseType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setReleaseType(String value) {
|
||||
this.releaseType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the releaseDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getReleaseDate() {
|
||||
return releaseDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the releaseDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setReleaseDate(XMLGregorianCalendar value) {
|
||||
this.releaseDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the barcodes property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the barcodes property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the partNumber property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPartNumber() {
|
||||
return partNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the partNumber property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPartNumber(String value) {
|
||||
this.partNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the serialNumber property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerialNumber() {
|
||||
return serialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the serialNumber property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerialNumber(String value) {
|
||||
this.serialNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the keywords property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public KeywordsType getKeywords() {
|
||||
return keywords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the keywords property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public void setKeywords(KeywordsType value) {
|
||||
this.keywords = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the magazine 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 magazine property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMagazine().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link MagazineType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<MagazineType> getMagazine() {
|
||||
if (magazine == null) {
|
||||
magazine = new ArrayList<MagazineType>();
|
||||
}
|
||||
return this.magazine;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the book 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 book property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBook().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BookType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BookType> getBook() {
|
||||
if (book == null) {
|
||||
book = new ArrayList<BookType>();
|
||||
}
|
||||
return this.book;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the categories property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public CategoriesType getCategories() {
|
||||
return categories;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the categories property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public void setCategories(CategoriesType value) {
|
||||
this.categories = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the subcategories property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public SubcategoriesType getSubcategories() {
|
||||
return subcategories;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the subcategories property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public void setSubcategories(SubcategoriesType value) {
|
||||
this.subcategories = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the languages property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguages() {
|
||||
return languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the languages property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguages(LanguagesType value) {
|
||||
this.languages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the systems property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public SystemsType getSystems() {
|
||||
return systems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the systems property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public void setSystems(SystemsType value) {
|
||||
this.systems = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the architectures property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public ArchitecturesType getArchitectures() {
|
||||
return architectures;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the architectures property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public void setArchitectures(ArchitecturesType value) {
|
||||
this.architectures = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the requiredOperatingSystems property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemsType getRequiredOperatingSystems() {
|
||||
return requiredOperatingSystems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the requiredOperatingSystems property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public void setRequiredOperatingSystems(RequiredOperatingSystemsType value) {
|
||||
this.requiredOperatingSystems = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the userManual 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 userManual property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getUserManual().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link UserManualType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<UserManualType> getUserManual() {
|
||||
if (userManual == null) {
|
||||
userManual = new ArrayList<UserManualType>();
|
||||
}
|
||||
return this.userManual;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the opticalDisc 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 opticalDisc property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOpticalDisc().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link OpticalDiscType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<OpticalDiscType> getOpticalDisc() {
|
||||
if (opticalDisc == null) {
|
||||
opticalDisc = new ArrayList<OpticalDiscType>();
|
||||
}
|
||||
return this.opticalDisc;
|
||||
}
|
||||
|
||||
}
|
||||
111
java/generated/CaseScanType.java
Normal file
111
java/generated/CaseScanType.java
Normal file
@@ -0,0 +1,111 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CaseScanType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CaseScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseScanElement">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="sleeve"/>
|
||||
* <enumeration value="inner"/>
|
||||
* <enumeration value="inlay"/>
|
||||
* <enumeration value="frontback"/>
|
||||
* <enumeration value="frontfull"/>
|
||||
* <enumeration value="boxfront"/>
|
||||
* <enumeration value="boxback"/>
|
||||
* <enumeration value="boxspine"/>
|
||||
* <enumeration value="external"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CaseScanType", propOrder = {
|
||||
"caseScanElement",
|
||||
"scan"
|
||||
})
|
||||
public class CaseScanType {
|
||||
|
||||
@XmlElement(name = "CaseScanElement", required = true)
|
||||
protected String caseScanElement;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the caseScanElement property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCaseScanElement() {
|
||||
return caseScanElement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the caseScanElement property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCaseScanElement(String value) {
|
||||
this.caseScanElement = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
java/generated/CaseType.java
Normal file
127
java/generated/CaseType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CaseType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CaseType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseType">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="jewel"/>
|
||||
* <enumeration value="bigjewel"/>
|
||||
* <enumeration value="slimjewel"/>
|
||||
* <enumeration value="sleeve"/>
|
||||
* <enumeration value="qpack"/>
|
||||
* <enumeration value="digisleeve"/>
|
||||
* <enumeration value="discboxslider"/>
|
||||
* <enumeration value="compacplus"/>
|
||||
* <enumeration value="keepcase"/>
|
||||
* <enumeration value="snapcase"/>
|
||||
* <enumeration value="softcase"/>
|
||||
* <enumeration value="ecopack"/>
|
||||
* <enumeration value="liftlock"/>
|
||||
* <enumeration value="spindle"/>
|
||||
* <enumeration value="ps2case"/>
|
||||
* <enumeration value="ps3case"/>
|
||||
* <enumeration value="bluraykeepcase"/>
|
||||
* <enumeration value="pscase"/>
|
||||
* <enumeration value="dccase"/>
|
||||
* <enumeration value="saturncase"/>
|
||||
* <enumeration value="xboxcase"/>
|
||||
* <enumeration value="saturnbigcase"/>
|
||||
* <enumeration value="gccase"/>
|
||||
* <enumeration value="wiicase"/>
|
||||
* <enumeration value="unknown"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scans" type="{}ScansType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CaseType", propOrder = {
|
||||
"caseType",
|
||||
"scans"
|
||||
})
|
||||
public class CaseType {
|
||||
|
||||
@XmlElement(name = "CaseType", required = true)
|
||||
protected String caseType;
|
||||
@XmlElement(name = "Scans", required = true)
|
||||
protected ScansType scans;
|
||||
|
||||
/**
|
||||
* Gets the value of the caseType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCaseType() {
|
||||
return caseType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the caseType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCaseType(String value) {
|
||||
this.caseType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scans property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType getScans() {
|
||||
return scans;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scans property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public void setScans(ScansType value) {
|
||||
this.scans = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/CategoriesType.java
Normal file
76
java/generated/CategoriesType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 CategoriesType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CategoriesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CategoriesType", propOrder = {
|
||||
"category"
|
||||
})
|
||||
public class CategoriesType {
|
||||
|
||||
@XmlElement(name = "Category", required = true)
|
||||
protected List<String> category;
|
||||
|
||||
/**
|
||||
* Gets the value of the category 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 category property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCategory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getCategory() {
|
||||
if (category == null) {
|
||||
category = new ArrayList<String>();
|
||||
}
|
||||
return this.category;
|
||||
}
|
||||
|
||||
}
|
||||
125
java/generated/ChecksumType.java
Normal file
125
java/generated/ChecksumType.java
Normal file
@@ -0,0 +1,125 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 ChecksumType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ChecksumType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="type" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="fletcher16"/>
|
||||
* <enumeration value="fletcher32"/>
|
||||
* <enumeration value="adler32"/>
|
||||
* <enumeration value="crc16"/>
|
||||
* <enumeration value="crc16ccitt"/>
|
||||
* <enumeration value="crc32"/>
|
||||
* <enumeration value="crc64"/>
|
||||
* <enumeration value="md4"/>
|
||||
* <enumeration value="md5"/>
|
||||
* <enumeration value="dm6"/>
|
||||
* <enumeration value="ripemd128"/>
|
||||
* <enumeration value="ripemd160"/>
|
||||
* <enumeration value="ripemed320"/>
|
||||
* <enumeration value="sha1"/>
|
||||
* <enumeration value="sha224"/>
|
||||
* <enumeration value="sha256"/>
|
||||
* <enumeration value="sha384"/>
|
||||
* <enumeration value="sha512"/>
|
||||
* <enumeration value="sha3"/>
|
||||
* <enumeration value="skein"/>
|
||||
* <enumeration value="snefru"/>
|
||||
* <enumeration value="blake256"/>
|
||||
* <enumeration value="blake512"/>
|
||||
* <enumeration value="tiger"/>
|
||||
* <enumeration value="whirlpool"/>
|
||||
* <enumeration value="spamsum"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ChecksumType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ChecksumType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "type", required = true)
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
78
java/generated/ChecksumsType.java
Normal file
78
java/generated/ChecksumsType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Checksum of file element
|
||||
*
|
||||
* <p>Java class for ChecksumsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ChecksumsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Checksum" type="{}ChecksumType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ChecksumsType", propOrder = {
|
||||
"checksum"
|
||||
})
|
||||
public class ChecksumsType {
|
||||
|
||||
@XmlElement(name = "Checksum", required = true)
|
||||
protected List<ChecksumType> checksum;
|
||||
|
||||
/**
|
||||
* Gets the value of the checksum 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 checksum property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getChecksum().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ChecksumType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ChecksumType> getChecksum() {
|
||||
if (checksum == null) {
|
||||
checksum = new ArrayList<ChecksumType>();
|
||||
}
|
||||
return this.checksum;
|
||||
}
|
||||
|
||||
}
|
||||
123
java/generated/CoverType.java
Normal file
123
java/generated/CoverType.java
Normal file
@@ -0,0 +1,123 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CoverType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CoverType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Thumbnail" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CoverType", propOrder = {
|
||||
"file",
|
||||
"checksums",
|
||||
"thumbnail"
|
||||
})
|
||||
public class CoverType {
|
||||
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Thumbnail", required = true)
|
||||
protected byte[] thumbnail;
|
||||
|
||||
/**
|
||||
* Gets the value of the file property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the file property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public void setFile(FileType value) {
|
||||
this.file = 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 thumbnail property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* byte[]
|
||||
*/
|
||||
public byte[] getThumbnail() {
|
||||
return thumbnail;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the thumbnail property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* byte[]
|
||||
*/
|
||||
public void setThumbnail(byte[] value) {
|
||||
this.thumbnail = value;
|
||||
}
|
||||
|
||||
}
|
||||
147
java/generated/DimensionsType.java
Normal file
147
java/generated/DimensionsType.java
Normal file
@@ -0,0 +1,147 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Dimensions of media
|
||||
*
|
||||
* <p>Java class for DimensionsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DimensionsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Diameter" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Width" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Thickness" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DimensionsType", propOrder = {
|
||||
"diameter",
|
||||
"height",
|
||||
"width",
|
||||
"thickness"
|
||||
})
|
||||
public class DimensionsType {
|
||||
|
||||
@XmlElement(name = "Diameter")
|
||||
protected Double diameter;
|
||||
@XmlElement(name = "Height")
|
||||
protected Double height;
|
||||
@XmlElement(name = "Width")
|
||||
protected Double width;
|
||||
@XmlElement(name = "Thickness")
|
||||
protected double thickness;
|
||||
|
||||
/**
|
||||
* Gets the value of the diameter property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getDiameter() {
|
||||
return diameter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the diameter property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setDiameter(Double value) {
|
||||
this.diameter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the height property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getHeight() {
|
||||
return height;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the height property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setHeight(Double value) {
|
||||
this.height = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the width property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getWidth() {
|
||||
return width;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the width property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setWidth(Double value) {
|
||||
this.width = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the thickness property.
|
||||
*
|
||||
*/
|
||||
public double getThickness() {
|
||||
return thickness;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the thickness property.
|
||||
*
|
||||
*/
|
||||
public void setThickness(double value) {
|
||||
this.thickness = value;
|
||||
}
|
||||
|
||||
}
|
||||
108
java/generated/DiscScanType.java
Normal file
108
java/generated/DiscScanType.java
Normal file
@@ -0,0 +1,108 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for DiscScanType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DiscScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DiscScanElement">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="up"/>
|
||||
* <enumeration value="down"/>
|
||||
* <enumeration value="front"/>
|
||||
* <enumeration value="back"/>
|
||||
* <enumeration value="left"/>
|
||||
* <enumeration value="right"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscScanType", propOrder = {
|
||||
"discScanElement",
|
||||
"scan"
|
||||
})
|
||||
public class DiscScanType {
|
||||
|
||||
@XmlElement(name = "DiscScanElement", required = true)
|
||||
protected String discScanElement;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the discScanElement property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscScanElement() {
|
||||
return discScanElement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discScanElement property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscScanElement(String value) {
|
||||
this.discScanElement = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
69
java/generated/DumpHardwareArrayType.java
Normal file
69
java/generated/DumpHardwareArrayType.java
Normal file
@@ -0,0 +1,69 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for DumpHardwareArrayType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpHardwareArrayType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DumpHardware" type="{}DumpHardwareType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpHardwareArrayType", propOrder = {
|
||||
"dumpHardware"
|
||||
})
|
||||
public class DumpHardwareArrayType {
|
||||
|
||||
@XmlElement(name = "DumpHardware", required = true)
|
||||
protected DumpHardwareType dumpHardware;
|
||||
|
||||
/**
|
||||
* Gets the value of the dumpHardware property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpHardwareType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareType getDumpHardware() {
|
||||
return dumpHardware;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dumpHardware property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpHardwareType }
|
||||
*
|
||||
*/
|
||||
public void setDumpHardware(DumpHardwareType value) {
|
||||
this.dumpHardware = value;
|
||||
}
|
||||
|
||||
}
|
||||
237
java/generated/DumpHardwareType.java
Normal file
237
java/generated/DumpHardwareType.java
Normal file
@@ -0,0 +1,237 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for DumpHardwareType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpHardwareType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Revision" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Firmware" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Extents" type="{}ExtentsType"/>
|
||||
* <element name="Software" type="{}SoftwareType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpHardwareType", propOrder = {
|
||||
"manufacturer",
|
||||
"model",
|
||||
"revision",
|
||||
"firmware",
|
||||
"serial",
|
||||
"extents",
|
||||
"software"
|
||||
})
|
||||
public class DumpHardwareType {
|
||||
|
||||
@XmlElement(name = "Manufacturer", required = true)
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model", required = true)
|
||||
protected String model;
|
||||
@XmlElement(name = "Revision", required = true)
|
||||
protected String revision;
|
||||
@XmlElement(name = "Firmware", required = true)
|
||||
protected String firmware;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
@XmlElement(name = "Extents", required = true)
|
||||
protected ExtentsType extents;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected SoftwareType software;
|
||||
|
||||
/**
|
||||
* Gets the value of the manufacturer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the manufacturer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the model property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the model property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the revision property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRevision() {
|
||||
return revision;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the revision property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRevision(String value) {
|
||||
this.revision = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the firmware property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirmware() {
|
||||
return firmware;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the firmware property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirmware(String value) {
|
||||
this.firmware = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the serial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the serial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the extents property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public ExtentsType getExtents() {
|
||||
return extents;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the extents property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public void setExtents(ExtentsType value) {
|
||||
this.extents = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the software property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public SoftwareType getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the software property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(SoftwareType value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
}
|
||||
119
java/generated/DumpType.java
Normal file
119
java/generated/DumpType.java
Normal file
@@ -0,0 +1,119 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about dumped structure
|
||||
*
|
||||
* <p>Java class for DumpType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DumpType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DumpType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class DumpType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size")
|
||||
protected int size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
/**
|
||||
* Gets the value of the image property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the image property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setImage(String value) {
|
||||
this.image = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the size property.
|
||||
*
|
||||
*/
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the size property.
|
||||
*
|
||||
*/
|
||||
public void setSize(int value) {
|
||||
this.size = 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;
|
||||
}
|
||||
|
||||
}
|
||||
81
java/generated/ExtentType.java
Normal file
81
java/generated/ExtentType.java
Normal file
@@ -0,0 +1,81 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ExtentType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtentType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtentType", propOrder = {
|
||||
"start",
|
||||
"end"
|
||||
})
|
||||
public class ExtentType {
|
||||
|
||||
@XmlElement(name = "Start")
|
||||
protected int start;
|
||||
@XmlElement(name = "End")
|
||||
protected int end;
|
||||
|
||||
/**
|
||||
* Gets the value of the start property.
|
||||
*
|
||||
*/
|
||||
public int getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the start property.
|
||||
*
|
||||
*/
|
||||
public void setStart(int value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the end property.
|
||||
*
|
||||
*/
|
||||
public int getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the end property.
|
||||
*
|
||||
*/
|
||||
public void setEnd(int value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/ExtentsType.java
Normal file
76
java/generated/ExtentsType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 ExtentsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ExtentsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Extent" type="{}ExtentType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ExtentsType", propOrder = {
|
||||
"extent"
|
||||
})
|
||||
public class ExtentsType {
|
||||
|
||||
@XmlElement(name = "Extent", required = true)
|
||||
protected List<ExtentType> extent;
|
||||
|
||||
/**
|
||||
* Gets the value of the extent 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 extent property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getExtent().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ExtentType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ExtentType> getExtent() {
|
||||
if (extent == null) {
|
||||
extent = new ArrayList<ExtentType>();
|
||||
}
|
||||
return this.extent;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/FileSystemInformationType.java
Normal file
76
java/generated/FileSystemInformationType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 FileSystemInformationType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemInformationType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Partition" type="{}PartitionType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemInformationType", propOrder = {
|
||||
"partition"
|
||||
})
|
||||
public class FileSystemInformationType {
|
||||
|
||||
@XmlElement(name = "Partition", required = true)
|
||||
protected List<PartitionType> 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 PartitionType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PartitionType> getPartition() {
|
||||
if (partition == null) {
|
||||
partition = new ArrayList<PartitionType>();
|
||||
}
|
||||
return this.partition;
|
||||
}
|
||||
|
||||
}
|
||||
550
java/generated/FileSystemType.java
Normal file
550
java/generated/FileSystemType.java
Normal file
@@ -0,0 +1,550 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Information about a filesystem
|
||||
*
|
||||
* <p>Java class for FileSystemType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ModificationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="BackupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Files" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Bootable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="VolumeSerial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="VolumeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Dirty" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="SystemIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="VolumeSetIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PublisherIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="DataPreparerIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ApplicationIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemType", propOrder = {
|
||||
"type",
|
||||
"creationDate",
|
||||
"modificationDate",
|
||||
"backupDate",
|
||||
"clusterSize",
|
||||
"clusters",
|
||||
"files",
|
||||
"bootable",
|
||||
"volumeSerial",
|
||||
"volumeName",
|
||||
"freeClusters",
|
||||
"dirty",
|
||||
"expirationDate",
|
||||
"effectiveDate",
|
||||
"systemIdentifier",
|
||||
"volumeSetIdentifier",
|
||||
"publisherIdentifier",
|
||||
"dataPreparerIdentifier",
|
||||
"applicationIdentifier"
|
||||
})
|
||||
public class FileSystemType {
|
||||
|
||||
@XmlElement(name = "Type", required = true)
|
||||
protected String type;
|
||||
@XmlElement(name = "CreationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creationDate;
|
||||
@XmlElement(name = "ModificationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar modificationDate;
|
||||
@XmlElement(name = "BackupDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar backupDate;
|
||||
@XmlElement(name = "ClusterSize")
|
||||
protected int clusterSize;
|
||||
@XmlElement(name = "Clusters")
|
||||
protected long clusters;
|
||||
@XmlElement(name = "Files")
|
||||
protected Long files;
|
||||
@XmlElement(name = "Bootable")
|
||||
protected boolean bootable;
|
||||
@XmlElement(name = "VolumeSerial")
|
||||
protected String volumeSerial;
|
||||
@XmlElement(name = "VolumeName")
|
||||
protected String volumeName;
|
||||
@XmlElement(name = "FreeClusters")
|
||||
protected Long freeClusters;
|
||||
@XmlElement(name = "Dirty")
|
||||
protected boolean dirty;
|
||||
@XmlElement(name = "ExpirationDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar expirationDate;
|
||||
@XmlElement(name = "EffectiveDate")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar effectiveDate;
|
||||
@XmlElement(name = "SystemIdentifier")
|
||||
protected String systemIdentifier;
|
||||
@XmlElement(name = "VolumeSetIdentifier")
|
||||
protected String volumeSetIdentifier;
|
||||
@XmlElement(name = "PublisherIdentifier")
|
||||
protected String publisherIdentifier;
|
||||
@XmlElement(name = "DataPreparerIdentifier")
|
||||
protected String dataPreparerIdentifier;
|
||||
@XmlElement(name = "ApplicationIdentifier")
|
||||
protected String applicationIdentifier;
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the creationDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getCreationDate() {
|
||||
return creationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the creationDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setCreationDate(XMLGregorianCalendar value) {
|
||||
this.creationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the modificationDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getModificationDate() {
|
||||
return modificationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the modificationDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setModificationDate(XMLGregorianCalendar value) {
|
||||
this.modificationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the backupDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getBackupDate() {
|
||||
return backupDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the backupDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setBackupDate(XMLGregorianCalendar value) {
|
||||
this.backupDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the clusterSize property.
|
||||
*
|
||||
*/
|
||||
public int getClusterSize() {
|
||||
return clusterSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the clusterSize property.
|
||||
*
|
||||
*/
|
||||
public void setClusterSize(int value) {
|
||||
this.clusterSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the clusters property.
|
||||
*
|
||||
*/
|
||||
public long getClusters() {
|
||||
return clusters;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the clusters property.
|
||||
*
|
||||
*/
|
||||
public void setClusters(long value) {
|
||||
this.clusters = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the files property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the files property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setFiles(Long value) {
|
||||
this.files = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the bootable property.
|
||||
*
|
||||
*/
|
||||
public boolean isBootable() {
|
||||
return bootable;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the bootable property.
|
||||
*
|
||||
*/
|
||||
public void setBootable(boolean value) {
|
||||
this.bootable = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the volumeSerial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeSerial() {
|
||||
return volumeSerial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the volumeSerial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeSerial(String value) {
|
||||
this.volumeSerial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the volumeName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeName() {
|
||||
return volumeName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the volumeName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeName(String value) {
|
||||
this.volumeName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the freeClusters property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getFreeClusters() {
|
||||
return freeClusters;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the freeClusters property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setFreeClusters(Long value) {
|
||||
this.freeClusters = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dirty property.
|
||||
*
|
||||
*/
|
||||
public boolean isDirty() {
|
||||
return dirty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dirty property.
|
||||
*
|
||||
*/
|
||||
public void setDirty(boolean value) {
|
||||
this.dirty = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the expirationDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getExpirationDate() {
|
||||
return expirationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the expirationDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setExpirationDate(XMLGregorianCalendar value) {
|
||||
this.expirationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the effectiveDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getEffectiveDate() {
|
||||
return effectiveDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the effectiveDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setEffectiveDate(XMLGregorianCalendar value) {
|
||||
this.effectiveDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the systemIdentifier property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSystemIdentifier() {
|
||||
return systemIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the systemIdentifier property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSystemIdentifier(String value) {
|
||||
this.systemIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the volumeSetIdentifier property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVolumeSetIdentifier() {
|
||||
return volumeSetIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the volumeSetIdentifier property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVolumeSetIdentifier(String value) {
|
||||
this.volumeSetIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the publisherIdentifier property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPublisherIdentifier() {
|
||||
return publisherIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the publisherIdentifier property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPublisherIdentifier(String value) {
|
||||
this.publisherIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dataPreparerIdentifier property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDataPreparerIdentifier() {
|
||||
return dataPreparerIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dataPreparerIdentifier property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDataPreparerIdentifier(String value) {
|
||||
this.dataPreparerIdentifier = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the applicationIdentifier property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getApplicationIdentifier() {
|
||||
return applicationIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the applicationIdentifier property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setApplicationIdentifier(String value) {
|
||||
this.applicationIdentifier = value;
|
||||
}
|
||||
|
||||
}
|
||||
69
java/generated/FileSystemsType.java
Normal file
69
java/generated/FileSystemsType.java
Normal file
@@ -0,0 +1,69 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for FileSystemsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileSystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FileSystem" type="{}FileSystemType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileSystemsType", propOrder = {
|
||||
"fileSystem"
|
||||
})
|
||||
public class FileSystemsType {
|
||||
|
||||
@XmlElement(name = "FileSystem", required = true)
|
||||
protected FileSystemType fileSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the fileSystem property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileSystemType }
|
||||
*
|
||||
*/
|
||||
public FileSystemType getFileSystem() {
|
||||
return fileSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the fileSystem property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileSystemType }
|
||||
*
|
||||
*/
|
||||
public void setFileSystem(FileSystemType value) {
|
||||
this.fileSystem = value;
|
||||
}
|
||||
|
||||
}
|
||||
96
java/generated/FileType.java
Normal file
96
java/generated/FileType.java
Normal file
@@ -0,0 +1,96 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* File
|
||||
*
|
||||
* <p>Java class for FileType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FileType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FileType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class FileType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "format")
|
||||
protected String format;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the format property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the format property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
}
|
||||
123
java/generated/ImageType.java
Normal file
123
java/generated/ImageType.java
Normal file
@@ -0,0 +1,123 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* File containing track dump, and format, binary, yranib, or audio/video container
|
||||
*
|
||||
* <p>Java class for ImageType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ImageType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ImageType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ImageType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "format")
|
||||
protected String format;
|
||||
@XmlAttribute(name = "offset")
|
||||
protected Long offset;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the format property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the format property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFormat(String value) {
|
||||
this.format = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the offset property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the offset property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setOffset(Long value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
}
|
||||
69
java/generated/KeywordsType.java
Normal file
69
java/generated/KeywordsType.java
Normal file
@@ -0,0 +1,69 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for KeywordsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="KeywordsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "KeywordsType", propOrder = {
|
||||
"keyword"
|
||||
})
|
||||
public class KeywordsType {
|
||||
|
||||
@XmlElement(name = "Keyword", required = true)
|
||||
protected String keyword;
|
||||
|
||||
/**
|
||||
* Gets the value of the keyword property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the keyword property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKeyword(String value) {
|
||||
this.keyword = value;
|
||||
}
|
||||
|
||||
}
|
||||
560
java/generated/LanguagesType.java
Normal file
560
java/generated/LanguagesType.java
Normal file
@@ -0,0 +1,560 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for LanguagesType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LanguagesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aar"/>
|
||||
* <enumeration value="abk"/>
|
||||
* <enumeration value="ace"/>
|
||||
* <enumeration value="ach"/>
|
||||
* <enumeration value="ada"/>
|
||||
* <enumeration value="ady"/>
|
||||
* <enumeration value="afa"/>
|
||||
* <enumeration value="afh"/>
|
||||
* <enumeration value="afr"/>
|
||||
* <enumeration value="ain"/>
|
||||
* <enumeration value="aka"/>
|
||||
* <enumeration value="akk"/>
|
||||
* <enumeration value="alb"/>
|
||||
* <enumeration value="ale"/>
|
||||
* <enumeration value="alg"/>
|
||||
* <enumeration value="alt"/>
|
||||
* <enumeration value="amh"/>
|
||||
* <enumeration value="ang"/>
|
||||
* <enumeration value="anp"/>
|
||||
* <enumeration value="apa"/>
|
||||
* <enumeration value="ara"/>
|
||||
* <enumeration value="arc"/>
|
||||
* <enumeration value="arg"/>
|
||||
* <enumeration value="arm"/>
|
||||
* <enumeration value="arn"/>
|
||||
* <enumeration value="arp"/>
|
||||
* <enumeration value="art"/>
|
||||
* <enumeration value="arw"/>
|
||||
* <enumeration value="asm"/>
|
||||
* <enumeration value="ast"/>
|
||||
* <enumeration value="ath"/>
|
||||
* <enumeration value="aus"/>
|
||||
* <enumeration value="ava"/>
|
||||
* <enumeration value="ave"/>
|
||||
* <enumeration value="awa"/>
|
||||
* <enumeration value="aym"/>
|
||||
* <enumeration value="aze"/>
|
||||
* <enumeration value="bad"/>
|
||||
* <enumeration value="bai"/>
|
||||
* <enumeration value="bak"/>
|
||||
* <enumeration value="bal"/>
|
||||
* <enumeration value="bam"/>
|
||||
* <enumeration value="ban"/>
|
||||
* <enumeration value="baq"/>
|
||||
* <enumeration value="bas"/>
|
||||
* <enumeration value="bat"/>
|
||||
* <enumeration value="bej"/>
|
||||
* <enumeration value="bel"/>
|
||||
* <enumeration value="bem"/>
|
||||
* <enumeration value="ben"/>
|
||||
* <enumeration value="ber"/>
|
||||
* <enumeration value="bho"/>
|
||||
* <enumeration value="bih"/>
|
||||
* <enumeration value="bik"/>
|
||||
* <enumeration value="bin"/>
|
||||
* <enumeration value="bis"/>
|
||||
* <enumeration value="bla"/>
|
||||
* <enumeration value="bnt"/>
|
||||
* <enumeration value="bos"/>
|
||||
* <enumeration value="bra"/>
|
||||
* <enumeration value="bre"/>
|
||||
* <enumeration value="btk"/>
|
||||
* <enumeration value="bua"/>
|
||||
* <enumeration value="bug"/>
|
||||
* <enumeration value="bul"/>
|
||||
* <enumeration value="bur"/>
|
||||
* <enumeration value="byn"/>
|
||||
* <enumeration value="cad"/>
|
||||
* <enumeration value="cai"/>
|
||||
* <enumeration value="car"/>
|
||||
* <enumeration value="cat"/>
|
||||
* <enumeration value="cau"/>
|
||||
* <enumeration value="ceb"/>
|
||||
* <enumeration value="cel"/>
|
||||
* <enumeration value="cha"/>
|
||||
* <enumeration value="chb"/>
|
||||
* <enumeration value="che"/>
|
||||
* <enumeration value="chg"/>
|
||||
* <enumeration value="chi"/>
|
||||
* <enumeration value="chk"/>
|
||||
* <enumeration value="chm"/>
|
||||
* <enumeration value="chn"/>
|
||||
* <enumeration value="cho"/>
|
||||
* <enumeration value="chp"/>
|
||||
* <enumeration value="chr"/>
|
||||
* <enumeration value="chu"/>
|
||||
* <enumeration value="chv"/>
|
||||
* <enumeration value="chy"/>
|
||||
* <enumeration value="cmc"/>
|
||||
* <enumeration value="cop"/>
|
||||
* <enumeration value="cor"/>
|
||||
* <enumeration value="cos"/>
|
||||
* <enumeration value="cpe"/>
|
||||
* <enumeration value="cpf"/>
|
||||
* <enumeration value="cpp"/>
|
||||
* <enumeration value="cre"/>
|
||||
* <enumeration value="crh"/>
|
||||
* <enumeration value="crp"/>
|
||||
* <enumeration value="csb"/>
|
||||
* <enumeration value="cus"/>
|
||||
* <enumeration value="cze"/>
|
||||
* <enumeration value="dak"/>
|
||||
* <enumeration value="dan"/>
|
||||
* <enumeration value="dar"/>
|
||||
* <enumeration value="day"/>
|
||||
* <enumeration value="del"/>
|
||||
* <enumeration value="den"/>
|
||||
* <enumeration value="dgr"/>
|
||||
* <enumeration value="din"/>
|
||||
* <enumeration value="div"/>
|
||||
* <enumeration value="doi"/>
|
||||
* <enumeration value="dra"/>
|
||||
* <enumeration value="dsb"/>
|
||||
* <enumeration value="dua"/>
|
||||
* <enumeration value="dum"/>
|
||||
* <enumeration value="dut"/>
|
||||
* <enumeration value="dyu"/>
|
||||
* <enumeration value="dzo"/>
|
||||
* <enumeration value="efi"/>
|
||||
* <enumeration value="egy"/>
|
||||
* <enumeration value="eka"/>
|
||||
* <enumeration value="elx"/>
|
||||
* <enumeration value="eng"/>
|
||||
* <enumeration value="enm"/>
|
||||
* <enumeration value="epo"/>
|
||||
* <enumeration value="est"/>
|
||||
* <enumeration value="ewe"/>
|
||||
* <enumeration value="ewo"/>
|
||||
* <enumeration value="fan"/>
|
||||
* <enumeration value="fao"/>
|
||||
* <enumeration value="fat"/>
|
||||
* <enumeration value="fij"/>
|
||||
* <enumeration value="fil"/>
|
||||
* <enumeration value="fin"/>
|
||||
* <enumeration value="fiu"/>
|
||||
* <enumeration value="fon"/>
|
||||
* <enumeration value="fre"/>
|
||||
* <enumeration value="frm"/>
|
||||
* <enumeration value="fro"/>
|
||||
* <enumeration value="frr"/>
|
||||
* <enumeration value="frs"/>
|
||||
* <enumeration value="fry"/>
|
||||
* <enumeration value="ful"/>
|
||||
* <enumeration value="fur"/>
|
||||
* <enumeration value="gaa"/>
|
||||
* <enumeration value="gay"/>
|
||||
* <enumeration value="gba"/>
|
||||
* <enumeration value="gem"/>
|
||||
* <enumeration value="geo"/>
|
||||
* <enumeration value="ger"/>
|
||||
* <enumeration value="gez"/>
|
||||
* <enumeration value="gil"/>
|
||||
* <enumeration value="gla"/>
|
||||
* <enumeration value="gle"/>
|
||||
* <enumeration value="glg"/>
|
||||
* <enumeration value="glv"/>
|
||||
* <enumeration value="gmh"/>
|
||||
* <enumeration value="goh"/>
|
||||
* <enumeration value="gon"/>
|
||||
* <enumeration value="gor"/>
|
||||
* <enumeration value="got"/>
|
||||
* <enumeration value="grb"/>
|
||||
* <enumeration value="grc"/>
|
||||
* <enumeration value="gre"/>
|
||||
* <enumeration value="grn"/>
|
||||
* <enumeration value="gsw"/>
|
||||
* <enumeration value="guj"/>
|
||||
* <enumeration value="gwi"/>
|
||||
* <enumeration value="hai"/>
|
||||
* <enumeration value="hat"/>
|
||||
* <enumeration value="hau"/>
|
||||
* <enumeration value="haw"/>
|
||||
* <enumeration value="heb"/>
|
||||
* <enumeration value="her"/>
|
||||
* <enumeration value="hil"/>
|
||||
* <enumeration value="him"/>
|
||||
* <enumeration value="hin"/>
|
||||
* <enumeration value="hit"/>
|
||||
* <enumeration value="hmn"/>
|
||||
* <enumeration value="hmo"/>
|
||||
* <enumeration value="hrv"/>
|
||||
* <enumeration value="hsb"/>
|
||||
* <enumeration value="hun"/>
|
||||
* <enumeration value="hup"/>
|
||||
* <enumeration value="iba"/>
|
||||
* <enumeration value="ibo"/>
|
||||
* <enumeration value="ice"/>
|
||||
* <enumeration value="ido"/>
|
||||
* <enumeration value="iii"/>
|
||||
* <enumeration value="ijo"/>
|
||||
* <enumeration value="iku"/>
|
||||
* <enumeration value="ile"/>
|
||||
* <enumeration value="ilo"/>
|
||||
* <enumeration value="ina"/>
|
||||
* <enumeration value="inc"/>
|
||||
* <enumeration value="ind"/>
|
||||
* <enumeration value="ine"/>
|
||||
* <enumeration value="inh"/>
|
||||
* <enumeration value="ipk"/>
|
||||
* <enumeration value="ira"/>
|
||||
* <enumeration value="iro"/>
|
||||
* <enumeration value="ita"/>
|
||||
* <enumeration value="jav"/>
|
||||
* <enumeration value="jbo"/>
|
||||
* <enumeration value="jpn"/>
|
||||
* <enumeration value="jpr"/>
|
||||
* <enumeration value="jrb"/>
|
||||
* <enumeration value="kaa"/>
|
||||
* <enumeration value="kab"/>
|
||||
* <enumeration value="kac"/>
|
||||
* <enumeration value="kal"/>
|
||||
* <enumeration value="kam"/>
|
||||
* <enumeration value="kan"/>
|
||||
* <enumeration value="kar"/>
|
||||
* <enumeration value="kas"/>
|
||||
* <enumeration value="kau"/>
|
||||
* <enumeration value="kaw"/>
|
||||
* <enumeration value="kaz"/>
|
||||
* <enumeration value="kbd"/>
|
||||
* <enumeration value="kha"/>
|
||||
* <enumeration value="khi"/>
|
||||
* <enumeration value="khm"/>
|
||||
* <enumeration value="kho"/>
|
||||
* <enumeration value="kik"/>
|
||||
* <enumeration value="kin"/>
|
||||
* <enumeration value="kir"/>
|
||||
* <enumeration value="kmb"/>
|
||||
* <enumeration value="kok"/>
|
||||
* <enumeration value="kom"/>
|
||||
* <enumeration value="kon"/>
|
||||
* <enumeration value="kor"/>
|
||||
* <enumeration value="kos"/>
|
||||
* <enumeration value="kpe"/>
|
||||
* <enumeration value="krc"/>
|
||||
* <enumeration value="krl"/>
|
||||
* <enumeration value="kro"/>
|
||||
* <enumeration value="kru"/>
|
||||
* <enumeration value="kua"/>
|
||||
* <enumeration value="kum"/>
|
||||
* <enumeration value="kur"/>
|
||||
* <enumeration value="kut"/>
|
||||
* <enumeration value="lad"/>
|
||||
* <enumeration value="lah"/>
|
||||
* <enumeration value="lam"/>
|
||||
* <enumeration value="lao"/>
|
||||
* <enumeration value="lat"/>
|
||||
* <enumeration value="lav"/>
|
||||
* <enumeration value="lez"/>
|
||||
* <enumeration value="lim"/>
|
||||
* <enumeration value="lin"/>
|
||||
* <enumeration value="lit"/>
|
||||
* <enumeration value="lol"/>
|
||||
* <enumeration value="loz"/>
|
||||
* <enumeration value="ltz"/>
|
||||
* <enumeration value="lua"/>
|
||||
* <enumeration value="lub"/>
|
||||
* <enumeration value="lug"/>
|
||||
* <enumeration value="lui"/>
|
||||
* <enumeration value="lun"/>
|
||||
* <enumeration value="luo"/>
|
||||
* <enumeration value="lus"/>
|
||||
* <enumeration value="mac"/>
|
||||
* <enumeration value="mad"/>
|
||||
* <enumeration value="mag"/>
|
||||
* <enumeration value="mah"/>
|
||||
* <enumeration value="mai"/>
|
||||
* <enumeration value="mak"/>
|
||||
* <enumeration value="mal"/>
|
||||
* <enumeration value="man"/>
|
||||
* <enumeration value="mao"/>
|
||||
* <enumeration value="map"/>
|
||||
* <enumeration value="mar"/>
|
||||
* <enumeration value="mas"/>
|
||||
* <enumeration value="may"/>
|
||||
* <enumeration value="mdf"/>
|
||||
* <enumeration value="mdr"/>
|
||||
* <enumeration value="men"/>
|
||||
* <enumeration value="mga"/>
|
||||
* <enumeration value="mic"/>
|
||||
* <enumeration value="min"/>
|
||||
* <enumeration value="mis"/>
|
||||
* <enumeration value="mkh"/>
|
||||
* <enumeration value="mlg"/>
|
||||
* <enumeration value="mlt"/>
|
||||
* <enumeration value="mnc"/>
|
||||
* <enumeration value="mni"/>
|
||||
* <enumeration value="mno"/>
|
||||
* <enumeration value="moh"/>
|
||||
* <enumeration value="mon"/>
|
||||
* <enumeration value="mos"/>
|
||||
* <enumeration value="mul"/>
|
||||
* <enumeration value="mun"/>
|
||||
* <enumeration value="mus"/>
|
||||
* <enumeration value="mwl"/>
|
||||
* <enumeration value="mwr"/>
|
||||
* <enumeration value="myn"/>
|
||||
* <enumeration value="myv"/>
|
||||
* <enumeration value="nah"/>
|
||||
* <enumeration value="nai"/>
|
||||
* <enumeration value="nap"/>
|
||||
* <enumeration value="nau"/>
|
||||
* <enumeration value="nav"/>
|
||||
* <enumeration value="nbl"/>
|
||||
* <enumeration value="nde"/>
|
||||
* <enumeration value="ndo"/>
|
||||
* <enumeration value="nds"/>
|
||||
* <enumeration value="nep"/>
|
||||
* <enumeration value="new"/>
|
||||
* <enumeration value="nia"/>
|
||||
* <enumeration value="nic"/>
|
||||
* <enumeration value="niu"/>
|
||||
* <enumeration value="nno"/>
|
||||
* <enumeration value="nob"/>
|
||||
* <enumeration value="nog"/>
|
||||
* <enumeration value="non"/>
|
||||
* <enumeration value="nor"/>
|
||||
* <enumeration value="nqo"/>
|
||||
* <enumeration value="nso"/>
|
||||
* <enumeration value="nub"/>
|
||||
* <enumeration value="nwc"/>
|
||||
* <enumeration value="nya"/>
|
||||
* <enumeration value="nym"/>
|
||||
* <enumeration value="nyn"/>
|
||||
* <enumeration value="nyo"/>
|
||||
* <enumeration value="nzi"/>
|
||||
* <enumeration value="oci"/>
|
||||
* <enumeration value="oji"/>
|
||||
* <enumeration value="ori"/>
|
||||
* <enumeration value="orm"/>
|
||||
* <enumeration value="osa"/>
|
||||
* <enumeration value="oss"/>
|
||||
* <enumeration value="ota"/>
|
||||
* <enumeration value="oto"/>
|
||||
* <enumeration value="paa"/>
|
||||
* <enumeration value="pag"/>
|
||||
* <enumeration value="pal"/>
|
||||
* <enumeration value="pam"/>
|
||||
* <enumeration value="pan"/>
|
||||
* <enumeration value="pap"/>
|
||||
* <enumeration value="pau"/>
|
||||
* <enumeration value="peo"/>
|
||||
* <enumeration value="per"/>
|
||||
* <enumeration value="phi"/>
|
||||
* <enumeration value="phn"/>
|
||||
* <enumeration value="pli"/>
|
||||
* <enumeration value="pol"/>
|
||||
* <enumeration value="pon"/>
|
||||
* <enumeration value="por"/>
|
||||
* <enumeration value="pra"/>
|
||||
* <enumeration value="pro"/>
|
||||
* <enumeration value="pus"/>
|
||||
* <enumeration value="qaa-qtz"/>
|
||||
* <enumeration value="que"/>
|
||||
* <enumeration value="raj"/>
|
||||
* <enumeration value="rap"/>
|
||||
* <enumeration value="rar"/>
|
||||
* <enumeration value="roa"/>
|
||||
* <enumeration value="roh"/>
|
||||
* <enumeration value="rom"/>
|
||||
* <enumeration value="rum"/>
|
||||
* <enumeration value="run"/>
|
||||
* <enumeration value="rup"/>
|
||||
* <enumeration value="rus"/>
|
||||
* <enumeration value="sad"/>
|
||||
* <enumeration value="sag"/>
|
||||
* <enumeration value="sah"/>
|
||||
* <enumeration value="sai"/>
|
||||
* <enumeration value="sal"/>
|
||||
* <enumeration value="sam"/>
|
||||
* <enumeration value="san"/>
|
||||
* <enumeration value="sas"/>
|
||||
* <enumeration value="sat"/>
|
||||
* <enumeration value="scn"/>
|
||||
* <enumeration value="sco"/>
|
||||
* <enumeration value="sel"/>
|
||||
* <enumeration value="sem"/>
|
||||
* <enumeration value="sga"/>
|
||||
* <enumeration value="sgn"/>
|
||||
* <enumeration value="shn"/>
|
||||
* <enumeration value="sid"/>
|
||||
* <enumeration value="sin"/>
|
||||
* <enumeration value="sio"/>
|
||||
* <enumeration value="sit"/>
|
||||
* <enumeration value="sla"/>
|
||||
* <enumeration value="slo"/>
|
||||
* <enumeration value="slv"/>
|
||||
* <enumeration value="sma"/>
|
||||
* <enumeration value="sme"/>
|
||||
* <enumeration value="smi"/>
|
||||
* <enumeration value="smj"/>
|
||||
* <enumeration value="smn"/>
|
||||
* <enumeration value="smo"/>
|
||||
* <enumeration value="sms"/>
|
||||
* <enumeration value="sna"/>
|
||||
* <enumeration value="snd"/>
|
||||
* <enumeration value="snk"/>
|
||||
* <enumeration value="sog"/>
|
||||
* <enumeration value="som"/>
|
||||
* <enumeration value="son"/>
|
||||
* <enumeration value="sot"/>
|
||||
* <enumeration value="spa"/>
|
||||
* <enumeration value="srd"/>
|
||||
* <enumeration value="srn"/>
|
||||
* <enumeration value="srp"/>
|
||||
* <enumeration value="srr"/>
|
||||
* <enumeration value="ssa"/>
|
||||
* <enumeration value="ssw"/>
|
||||
* <enumeration value="suk"/>
|
||||
* <enumeration value="sun"/>
|
||||
* <enumeration value="sus"/>
|
||||
* <enumeration value="sux"/>
|
||||
* <enumeration value="swa"/>
|
||||
* <enumeration value="swe"/>
|
||||
* <enumeration value="syc"/>
|
||||
* <enumeration value="syr"/>
|
||||
* <enumeration value="tah"/>
|
||||
* <enumeration value="tai"/>
|
||||
* <enumeration value="tam"/>
|
||||
* <enumeration value="tat"/>
|
||||
* <enumeration value="tel"/>
|
||||
* <enumeration value="tem"/>
|
||||
* <enumeration value="ter"/>
|
||||
* <enumeration value="tet"/>
|
||||
* <enumeration value="tgk"/>
|
||||
* <enumeration value="tgl"/>
|
||||
* <enumeration value="tha"/>
|
||||
* <enumeration value="tib"/>
|
||||
* <enumeration value="tig"/>
|
||||
* <enumeration value="tir"/>
|
||||
* <enumeration value="tiv"/>
|
||||
* <enumeration value="tkl"/>
|
||||
* <enumeration value="tlh"/>
|
||||
* <enumeration value="tli"/>
|
||||
* <enumeration value="tmh"/>
|
||||
* <enumeration value="tog"/>
|
||||
* <enumeration value="ton"/>
|
||||
* <enumeration value="tpi"/>
|
||||
* <enumeration value="tsi"/>
|
||||
* <enumeration value="tsn"/>
|
||||
* <enumeration value="tso"/>
|
||||
* <enumeration value="tuk"/>
|
||||
* <enumeration value="tum"/>
|
||||
* <enumeration value="tup"/>
|
||||
* <enumeration value="tur"/>
|
||||
* <enumeration value="tut"/>
|
||||
* <enumeration value="tvl"/>
|
||||
* <enumeration value="twi"/>
|
||||
* <enumeration value="tyv"/>
|
||||
* <enumeration value="udm"/>
|
||||
* <enumeration value="uga"/>
|
||||
* <enumeration value="uig"/>
|
||||
* <enumeration value="ukr"/>
|
||||
* <enumeration value="umb"/>
|
||||
* <enumeration value="und"/>
|
||||
* <enumeration value="urd"/>
|
||||
* <enumeration value="uzb"/>
|
||||
* <enumeration value="vai"/>
|
||||
* <enumeration value="ven"/>
|
||||
* <enumeration value="vie"/>
|
||||
* <enumeration value="vol"/>
|
||||
* <enumeration value="vot"/>
|
||||
* <enumeration value="wak"/>
|
||||
* <enumeration value="wal"/>
|
||||
* <enumeration value="war"/>
|
||||
* <enumeration value="was"/>
|
||||
* <enumeration value="wel"/>
|
||||
* <enumeration value="wen"/>
|
||||
* <enumeration value="wln"/>
|
||||
* <enumeration value="wol"/>
|
||||
* <enumeration value="xal"/>
|
||||
* <enumeration value="xho"/>
|
||||
* <enumeration value="yao"/>
|
||||
* <enumeration value="yap"/>
|
||||
* <enumeration value="yid"/>
|
||||
* <enumeration value="yor"/>
|
||||
* <enumeration value="ypk"/>
|
||||
* <enumeration value="zap"/>
|
||||
* <enumeration value="zbl"/>
|
||||
* <enumeration value="zen"/>
|
||||
* <enumeration value="zgh"/>
|
||||
* <enumeration value="zha"/>
|
||||
* <enumeration value="znd"/>
|
||||
* <enumeration value="zul"/>
|
||||
* <enumeration value="zun"/>
|
||||
* <enumeration value="zxx"/>
|
||||
* <enumeration value="zza"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LanguagesType", propOrder = {
|
||||
"language"
|
||||
})
|
||||
public class LanguagesType {
|
||||
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected String language;
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(String value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
}
|
||||
100
java/generated/LayeredTextType.java
Normal file
100
java/generated/LayeredTextType.java
Normal file
@@ -0,0 +1,100 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 LayeredTextType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LayeredTextType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="layer">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="0"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LayeredTextType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class LayeredTextType {
|
||||
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "layer")
|
||||
protected Integer layer;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the layer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the layer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
111
java/generated/LayersType.java
Normal file
111
java/generated/LayersType.java
Normal file
@@ -0,0 +1,111 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for LayersType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="LayersType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Sectors" type="{}SectorsType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* <attribute name="type">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="PTP"/>
|
||||
* <enumeration value="OTP"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LayersType", propOrder = {
|
||||
"sectors"
|
||||
})
|
||||
public class LayersType {
|
||||
|
||||
@XmlElement(name = "Sectors", required = true)
|
||||
protected List<SectorsType> sectors;
|
||||
@XmlAttribute(name = "type")
|
||||
protected String type;
|
||||
|
||||
/**
|
||||
* Gets the value of the sectors 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 sectors property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSectors().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link SectorsType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<SectorsType> getSectors() {
|
||||
if (sectors == null) {
|
||||
sectors = new ArrayList<SectorsType>();
|
||||
}
|
||||
return this.sectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
}
|
||||
324
java/generated/MagazineType.java
Normal file
324
java/generated/MagazineType.java
Normal file
@@ -0,0 +1,324 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for MagazineType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="MagazineType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Barcodes" type="{}BarcodesType" minOccurs="0"/>
|
||||
* <element name="Cover" type="{}CoverType" minOccurs="0"/>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "MagazineType", propOrder = {
|
||||
"barcodes",
|
||||
"cover",
|
||||
"name",
|
||||
"editorial",
|
||||
"publicationDate",
|
||||
"number",
|
||||
"language",
|
||||
"pages",
|
||||
"pageSize",
|
||||
"scan"
|
||||
})
|
||||
public class MagazineType {
|
||||
|
||||
@XmlElement(name = "Barcodes")
|
||||
protected BarcodesType barcodes;
|
||||
@XmlElement(name = "Cover")
|
||||
protected CoverType cover;
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Editorial")
|
||||
protected String editorial;
|
||||
@XmlElement(name = "PublicationDate")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar publicationDate;
|
||||
@XmlElement(name = "Number")
|
||||
protected Integer number;
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected Integer pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the barcodes property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType getBarcodes() {
|
||||
return barcodes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the barcodes property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public void setBarcodes(BarcodesType value) {
|
||||
this.barcodes = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cover property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType getCover() {
|
||||
return cover;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the cover property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public void setCover(CoverType value) {
|
||||
this.cover = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the editorial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEditorial() {
|
||||
return editorial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the editorial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEditorial(String value) {
|
||||
this.editorial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the publicationDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getPublicationDate() {
|
||||
return publicationDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the publicationDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setPublicationDate(XMLGregorianCalendar value) {
|
||||
this.publicationDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the number property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the number property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setNumber(Integer value) {
|
||||
this.number = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pages property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pages property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setPages(Integer value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pageSize property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pageSize property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
153
java/generated/OCRType.java
Normal file
153
java/generated/OCRType.java
Normal file
@@ -0,0 +1,153 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for OCRType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OCRType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Language" type="{}LanguagesType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OCRType", propOrder = {
|
||||
"author",
|
||||
"software",
|
||||
"softwareVersion",
|
||||
"language"
|
||||
})
|
||||
public class OCRType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected LanguagesType language;
|
||||
|
||||
/**
|
||||
* Gets the value of the author property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the author property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the software property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the software property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the softwareVersion property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the softwareVersion property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
}
|
||||
452
java/generated/ObjectFactory.java
Normal file
452
java/generated/ObjectFactory.java
Normal file
@@ -0,0 +1,452 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlElementDecl;
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the generated package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _CICMMetadata_QNAME = new QName("", "CICMMetadata");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: generated
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CICMMetadataType }
|
||||
*
|
||||
*/
|
||||
public CICMMetadataType createCICMMetadataType() {
|
||||
return new CICMMetadataType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CoverType }
|
||||
*
|
||||
*/
|
||||
public CoverType createCoverType() {
|
||||
return new CoverType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtentsType }
|
||||
*
|
||||
*/
|
||||
public ExtentsType createExtentsType() {
|
||||
return new ExtentsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public FileSystemInformationType createFileSystemInformationType() {
|
||||
return new FileSystemInformationType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public SecuritySectorsType createSecuritySectorsType() {
|
||||
return new SecuritySectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpHardwareType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareType createDumpHardwareType() {
|
||||
return new DumpHardwareType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ArchitecturesType }
|
||||
*
|
||||
*/
|
||||
public ArchitecturesType createArchitecturesType() {
|
||||
return new ArchitecturesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public FileSystemsType createFileSystemsType() {
|
||||
return new FileSystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ChecksumType }
|
||||
*
|
||||
*/
|
||||
public ChecksumType createChecksumType() {
|
||||
return new ChecksumType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SoftwareType }
|
||||
*
|
||||
*/
|
||||
public SoftwareType createSoftwareType() {
|
||||
return new SoftwareType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ImageType }
|
||||
*
|
||||
*/
|
||||
public ImageType createImageType() {
|
||||
return new ImageType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareArrayType createDumpHardwareArrayType() {
|
||||
return new DumpHardwareArrayType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public SubChannelType createSubChannelType() {
|
||||
return new SubChannelType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DiscScanType }
|
||||
*
|
||||
*/
|
||||
public DiscScanType createDiscScanType() {
|
||||
return new DiscScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScanProcessingType }
|
||||
*
|
||||
*/
|
||||
public ScanProcessingType createScanProcessingType() {
|
||||
return new ScanProcessingType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemType createRequiredOperatingSystemType() {
|
||||
return new RequiredOperatingSystemType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RequiredOperatingSystemsType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemsType createRequiredOperatingSystemsType() {
|
||||
return new RequiredOperatingSystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SystemsType }
|
||||
*
|
||||
*/
|
||||
public SystemsType createSystemsType() {
|
||||
return new SystemsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public TrackSequenceType createTrackSequenceType() {
|
||||
return new TrackSequenceType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PartitionType }
|
||||
*
|
||||
*/
|
||||
public PartitionType createPartitionType() {
|
||||
return new PartitionType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public CaseScanType createCaseScanType() {
|
||||
return new CaseScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType createScanType() {
|
||||
return new ScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KeywordsType }
|
||||
*
|
||||
*/
|
||||
public KeywordsType createKeywordsType() {
|
||||
return new KeywordsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BookType }
|
||||
*
|
||||
*/
|
||||
public BookType createBookType() {
|
||||
return new BookType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubcategoriesType }
|
||||
*
|
||||
*/
|
||||
public SubcategoriesType createSubcategoriesType() {
|
||||
return new SubcategoriesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CaseType }
|
||||
*
|
||||
*/
|
||||
public CaseType createCaseType() {
|
||||
return new CaseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link MagazineType }
|
||||
*
|
||||
*/
|
||||
public MagazineType createMagazineType() {
|
||||
return new MagazineType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType createDumpType() {
|
||||
return new DumpType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LayersType }
|
||||
*
|
||||
*/
|
||||
public LayersType createLayersType() {
|
||||
return new LayersType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CategoriesType }
|
||||
*
|
||||
*/
|
||||
public CategoriesType createCategoriesType() {
|
||||
return new CategoriesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BarcodeType }
|
||||
*
|
||||
*/
|
||||
public BarcodeType createBarcodeType() {
|
||||
return new BarcodeType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BorderType }
|
||||
*
|
||||
*/
|
||||
public BorderType createBorderType() {
|
||||
return new BorderType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType createLanguagesType() {
|
||||
return new LanguagesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ChecksumsType }
|
||||
*
|
||||
*/
|
||||
public ChecksumsType createChecksumsType() {
|
||||
return new ChecksumsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScannerType }
|
||||
*
|
||||
*/
|
||||
public ScannerType createScannerType() {
|
||||
return new ScannerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public SequenceType createSequenceType() {
|
||||
return new SequenceType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OpticalDiscType }
|
||||
*
|
||||
*/
|
||||
public OpticalDiscType createOpticalDiscType() {
|
||||
return new OpticalDiscType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OCRType }
|
||||
*
|
||||
*/
|
||||
public OCRType createOCRType() {
|
||||
return new OCRType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ExtentType }
|
||||
*
|
||||
*/
|
||||
public ExtentType createExtentType() {
|
||||
return new ExtentType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link XboxSecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public XboxSecuritySectorsType createXboxSecuritySectorsType() {
|
||||
return new XboxSecuritySectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType createScansType() {
|
||||
return new ScansType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link UserManualType }
|
||||
*
|
||||
*/
|
||||
public UserManualType createUserManualType() {
|
||||
return new UserManualType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BarcodesType }
|
||||
*
|
||||
*/
|
||||
public BarcodesType createBarcodesType() {
|
||||
return new BarcodesType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SectorsType }
|
||||
*
|
||||
*/
|
||||
public SectorsType createSectorsType() {
|
||||
return new SectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LayeredTextType }
|
||||
*
|
||||
*/
|
||||
public LayeredTextType createLayeredTextType() {
|
||||
return new LayeredTextType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType createFileType() {
|
||||
return new FileType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public DimensionsType createDimensionsType() {
|
||||
return new DimensionsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TrackType }
|
||||
*
|
||||
*/
|
||||
public TrackType createTrackType() {
|
||||
return new TrackType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FileSystemType }
|
||||
*
|
||||
*/
|
||||
public FileSystemType createFileSystemType() {
|
||||
return new FileSystemType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PS3EncryptionType }
|
||||
*
|
||||
*/
|
||||
public PS3EncryptionType createPS3EncryptionType() {
|
||||
return new PS3EncryptionType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link CICMMetadataType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "", name = "CICMMetadata")
|
||||
public JAXBElement<CICMMetadataType> createCICMMetadata(CICMMetadataType value) {
|
||||
return new JAXBElement<CICMMetadataType>(_CICMMetadata_QNAME, CICMMetadataType.class, null, value);
|
||||
}
|
||||
|
||||
}
|
||||
940
java/generated/OpticalDiscType.java
Normal file
940
java/generated/OpticalDiscType.java
Normal file
@@ -0,0 +1,940 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 OpticalDiscType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OpticalDiscType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Sequence" type="{}SequenceType"/>
|
||||
* <element name="Layers" type="{}LayersType" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="RingCode" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="MasteringSID" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Toolstamp" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="MouldSID" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="MouldText" type="{}LayeredTextType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="DiscType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DiscSubType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded"/>
|
||||
* <element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Dimensions" type="{}DimensionsType"/>
|
||||
* <element name="Case" type="{}CaseType" minOccurs="0"/>
|
||||
* <element name="Scans" type="{}ScansType" minOccurs="0"/>
|
||||
* <element name="PFI" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="DMI" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="CMI" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="BCA" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="ATIP" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="PMA" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="LeadIn" type="{}BorderType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="LeadOut" type="{}BorderType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="XboxSecuritySectors" type="{}XboxSecuritySectorsType" minOccurs="0"/>
|
||||
* <element name="PS3Encryption" type="{}PS3EncryptionType" minOccurs="0"/>
|
||||
* <element name="Track" type="{}TrackType" maxOccurs="unbounded"/>
|
||||
* <element name="DumpHardwareArray" type="{}DumpHardwareArrayType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OpticalDiscType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"layers",
|
||||
"checksums",
|
||||
"ringCode",
|
||||
"masteringSID",
|
||||
"toolstamp",
|
||||
"mouldSID",
|
||||
"mouldText",
|
||||
"discType",
|
||||
"discSubType",
|
||||
"offset",
|
||||
"tracks",
|
||||
"sessions",
|
||||
"copyProtection",
|
||||
"dimensions",
|
||||
"_case",
|
||||
"scans",
|
||||
"pfi",
|
||||
"dmi",
|
||||
"cmi",
|
||||
"bca",
|
||||
"atip",
|
||||
"pma",
|
||||
"leadIn",
|
||||
"leadOut",
|
||||
"xboxSecuritySectors",
|
||||
"ps3Encryption",
|
||||
"track",
|
||||
"dumpHardwareArray"
|
||||
})
|
||||
public class OpticalDiscType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected SequenceType sequence;
|
||||
@XmlElement(name = "Layers")
|
||||
protected LayersType layers;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "RingCode")
|
||||
protected List<LayeredTextType> ringCode;
|
||||
@XmlElement(name = "MasteringSID")
|
||||
protected List<LayeredTextType> masteringSID;
|
||||
@XmlElement(name = "Toolstamp")
|
||||
protected List<LayeredTextType> toolstamp;
|
||||
@XmlElement(name = "MouldSID")
|
||||
protected List<LayeredTextType> mouldSID;
|
||||
@XmlElement(name = "MouldText")
|
||||
protected List<LayeredTextType> mouldText;
|
||||
@XmlElement(name = "DiscType", required = true)
|
||||
protected String discType;
|
||||
@XmlElement(name = "DiscSubType", required = true)
|
||||
protected String discSubType;
|
||||
@XmlElement(name = "Offset")
|
||||
protected Integer offset;
|
||||
@XmlElement(name = "Tracks", type = Integer.class)
|
||||
protected List<Integer> tracks;
|
||||
@XmlElement(name = "Sessions")
|
||||
protected int sessions;
|
||||
@XmlElement(name = "CopyProtection")
|
||||
protected String copyProtection;
|
||||
@XmlElement(name = "Dimensions", required = true)
|
||||
protected DimensionsType dimensions;
|
||||
@XmlElement(name = "Case")
|
||||
protected CaseType _case;
|
||||
@XmlElement(name = "Scans")
|
||||
protected ScansType scans;
|
||||
@XmlElement(name = "PFI")
|
||||
protected DumpType pfi;
|
||||
@XmlElement(name = "DMI")
|
||||
protected DumpType dmi;
|
||||
@XmlElement(name = "CMI")
|
||||
protected DumpType cmi;
|
||||
@XmlElement(name = "BCA")
|
||||
protected DumpType bca;
|
||||
@XmlElement(name = "ATIP")
|
||||
protected DumpType atip;
|
||||
@XmlElement(name = "PMA")
|
||||
protected DumpType pma;
|
||||
@XmlElement(name = "LeadIn")
|
||||
protected List<BorderType> leadIn;
|
||||
@XmlElement(name = "LeadOut")
|
||||
protected List<BorderType> leadOut;
|
||||
@XmlElement(name = "XboxSecuritySectors")
|
||||
protected XboxSecuritySectorsType xboxSecuritySectors;
|
||||
@XmlElement(name = "PS3Encryption")
|
||||
protected PS3EncryptionType ps3Encryption;
|
||||
@XmlElement(name = "Track", required = true)
|
||||
protected List<TrackType> track;
|
||||
@XmlElement(name = "DumpHardwareArray")
|
||||
protected DumpHardwareArrayType dumpHardwareArray;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public SequenceType getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sequence property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SequenceType }
|
||||
*
|
||||
*/
|
||||
public void setSequence(SequenceType value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the layers property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LayersType }
|
||||
*
|
||||
*/
|
||||
public LayersType getLayers() {
|
||||
return layers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the layers property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LayersType }
|
||||
*
|
||||
*/
|
||||
public void setLayers(LayersType value) {
|
||||
this.layers = 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 ringCode 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 ringCode property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRingCode().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LayeredTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LayeredTextType> getRingCode() {
|
||||
if (ringCode == null) {
|
||||
ringCode = new ArrayList<LayeredTextType>();
|
||||
}
|
||||
return this.ringCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the masteringSID 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 masteringSID property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMasteringSID().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LayeredTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LayeredTextType> getMasteringSID() {
|
||||
if (masteringSID == null) {
|
||||
masteringSID = new ArrayList<LayeredTextType>();
|
||||
}
|
||||
return this.masteringSID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the toolstamp 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 toolstamp property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getToolstamp().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LayeredTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LayeredTextType> getToolstamp() {
|
||||
if (toolstamp == null) {
|
||||
toolstamp = new ArrayList<LayeredTextType>();
|
||||
}
|
||||
return this.toolstamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the mouldSID 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 mouldSID property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMouldSID().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LayeredTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LayeredTextType> getMouldSID() {
|
||||
if (mouldSID == null) {
|
||||
mouldSID = new ArrayList<LayeredTextType>();
|
||||
}
|
||||
return this.mouldSID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the mouldText 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 mouldText property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMouldText().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LayeredTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LayeredTextType> getMouldText() {
|
||||
if (mouldText == null) {
|
||||
mouldText = new ArrayList<LayeredTextType>();
|
||||
}
|
||||
return this.mouldText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the discType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscType() {
|
||||
return discType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscType(String value) {
|
||||
this.discType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the discSubType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscSubType() {
|
||||
return discSubType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discSubType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscSubType(String value) {
|
||||
this.discSubType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the offset property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the offset property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setOffset(Integer value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the tracks 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 tracks property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getTracks().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link Integer }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Integer> getTracks() {
|
||||
if (tracks == null) {
|
||||
tracks = new ArrayList<Integer>();
|
||||
}
|
||||
return this.tracks;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the sessions property.
|
||||
*
|
||||
*/
|
||||
public int getSessions() {
|
||||
return sessions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sessions property.
|
||||
*
|
||||
*/
|
||||
public void setSessions(int value) {
|
||||
this.sessions = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the copyProtection property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCopyProtection() {
|
||||
return copyProtection;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the copyProtection property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCopyProtection(String value) {
|
||||
this.copyProtection = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dimensions property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public DimensionsType getDimensions() {
|
||||
return dimensions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dimensions property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DimensionsType }
|
||||
*
|
||||
*/
|
||||
public void setDimensions(DimensionsType value) {
|
||||
this.dimensions = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the case property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CaseType }
|
||||
*
|
||||
*/
|
||||
public CaseType getCase() {
|
||||
return _case;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the case property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CaseType }
|
||||
*
|
||||
*/
|
||||
public void setCase(CaseType value) {
|
||||
this._case = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scans property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public ScansType getScans() {
|
||||
return scans;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scans property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScansType }
|
||||
*
|
||||
*/
|
||||
public void setScans(ScansType value) {
|
||||
this.scans = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pfi property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getPFI() {
|
||||
return pfi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pfi property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setPFI(DumpType value) {
|
||||
this.pfi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dmi property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getDMI() {
|
||||
return dmi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dmi property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setDMI(DumpType value) {
|
||||
this.dmi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cmi property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getCMI() {
|
||||
return cmi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the cmi property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setCMI(DumpType value) {
|
||||
this.cmi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the bca property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getBCA() {
|
||||
return bca;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the bca property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setBCA(DumpType value) {
|
||||
this.bca = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the atip property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getATIP() {
|
||||
return atip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the atip property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setATIP(DumpType value) {
|
||||
this.atip = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pma property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public DumpType getPMA() {
|
||||
return pma;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pma property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpType }
|
||||
*
|
||||
*/
|
||||
public void setPMA(DumpType value) {
|
||||
this.pma = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the leadIn 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 leadIn property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLeadIn().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BorderType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BorderType> getLeadIn() {
|
||||
if (leadIn == null) {
|
||||
leadIn = new ArrayList<BorderType>();
|
||||
}
|
||||
return this.leadIn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the leadOut 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 leadOut property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLeadOut().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BorderType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BorderType> getLeadOut() {
|
||||
if (leadOut == null) {
|
||||
leadOut = new ArrayList<BorderType>();
|
||||
}
|
||||
return this.leadOut;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the xboxSecuritySectors property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XboxSecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public XboxSecuritySectorsType getXboxSecuritySectors() {
|
||||
return xboxSecuritySectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the xboxSecuritySectors property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XboxSecuritySectorsType }
|
||||
*
|
||||
*/
|
||||
public void setXboxSecuritySectors(XboxSecuritySectorsType value) {
|
||||
this.xboxSecuritySectors = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ps3Encryption property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PS3EncryptionType }
|
||||
*
|
||||
*/
|
||||
public PS3EncryptionType getPS3Encryption() {
|
||||
return ps3Encryption;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ps3Encryption property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PS3EncryptionType }
|
||||
*
|
||||
*/
|
||||
public void setPS3Encryption(PS3EncryptionType value) {
|
||||
this.ps3Encryption = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the track 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 track property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getTrack().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link TrackType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<TrackType> getTrack() {
|
||||
if (track == null) {
|
||||
track = new ArrayList<TrackType>();
|
||||
}
|
||||
return this.track;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dumpHardwareArray property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public DumpHardwareArrayType getDumpHardwareArray() {
|
||||
return dumpHardwareArray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dumpHardwareArray property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DumpHardwareArrayType }
|
||||
*
|
||||
*/
|
||||
public void setDumpHardwareArray(DumpHardwareArrayType value) {
|
||||
this.dumpHardwareArray = value;
|
||||
}
|
||||
|
||||
}
|
||||
97
java/generated/PS3EncryptionType.java
Normal file
97
java/generated/PS3EncryptionType.java
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for PS3EncryptionType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PS3EncryptionType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PS3EncryptionType", propOrder = {
|
||||
"key",
|
||||
"serial"
|
||||
})
|
||||
public class PS3EncryptionType {
|
||||
|
||||
@XmlElement(name = "Key", required = true)
|
||||
protected String key;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
|
||||
/**
|
||||
* Gets the value of the key property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the key property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKey(String value) {
|
||||
this.key = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the serial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the serial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
}
|
||||
219
java/generated/PartitionType.java
Normal file
219
java/generated/PartitionType.java
Normal file
@@ -0,0 +1,219 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for PartitionType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PartitionType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Sequence">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FileSystems" type="{}FileSystemsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PartitionType", propOrder = {
|
||||
"sequence",
|
||||
"name",
|
||||
"type",
|
||||
"startSector",
|
||||
"endSector",
|
||||
"description",
|
||||
"fileSystems"
|
||||
})
|
||||
public class PartitionType {
|
||||
|
||||
@XmlElement(name = "Sequence")
|
||||
protected int sequence;
|
||||
@XmlElement(name = "Name")
|
||||
protected String name;
|
||||
@XmlElement(name = "Type")
|
||||
protected String type;
|
||||
@XmlElement(name = "StartSector")
|
||||
protected int startSector;
|
||||
@XmlElement(name = "EndSector")
|
||||
protected int endSector;
|
||||
@XmlElement(name = "Description")
|
||||
protected String description;
|
||||
@XmlElement(name = "FileSystems", required = true)
|
||||
protected FileSystemsType fileSystems;
|
||||
|
||||
/**
|
||||
* Gets the value of the sequence property.
|
||||
*
|
||||
*/
|
||||
public int getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sequence property.
|
||||
*
|
||||
*/
|
||||
public void setSequence(int value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setType(String value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startSector property.
|
||||
*
|
||||
*/
|
||||
public int getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startSector property.
|
||||
*
|
||||
*/
|
||||
public void setStartSector(int value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the endSector property.
|
||||
*
|
||||
*/
|
||||
public int getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the endSector property.
|
||||
*
|
||||
*/
|
||||
public void setEndSector(int value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the description property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the description property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the fileSystems property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public FileSystemsType getFileSystems() {
|
||||
return fileSystems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the fileSystems property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileSystemsType }
|
||||
*
|
||||
*/
|
||||
public void setFileSystems(FileSystemsType value) {
|
||||
this.fileSystems = value;
|
||||
}
|
||||
|
||||
}
|
||||
97
java/generated/RequiredOperatingSystemType.java
Normal file
97
java/generated/RequiredOperatingSystemType.java
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for RequiredOperatingSystemType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="RequiredOperatingSystemType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "RequiredOperatingSystemType", propOrder = {
|
||||
"name",
|
||||
"version"
|
||||
})
|
||||
public class RequiredOperatingSystemType {
|
||||
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version", required = true)
|
||||
protected String version;
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the version property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the version property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
}
|
||||
|
||||
}
|
||||
69
java/generated/RequiredOperatingSystemsType.java
Normal file
69
java/generated/RequiredOperatingSystemsType.java
Normal file
@@ -0,0 +1,69 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for RequiredOperatingSystemsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="RequiredOperatingSystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RequiredOperatingSystem" type="{}RequiredOperatingSystemType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "RequiredOperatingSystemsType", propOrder = {
|
||||
"requiredOperatingSystem"
|
||||
})
|
||||
public class RequiredOperatingSystemsType {
|
||||
|
||||
@XmlElement(name = "RequiredOperatingSystem", required = true)
|
||||
protected RequiredOperatingSystemType requiredOperatingSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the requiredOperatingSystem property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemType getRequiredOperatingSystem() {
|
||||
return requiredOperatingSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the requiredOperatingSystem property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public void setRequiredOperatingSystem(RequiredOperatingSystemType value) {
|
||||
this.requiredOperatingSystem = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
java/generated/ScanProcessingType.java
Normal file
127
java/generated/ScanProcessingType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about any scan processing done
|
||||
*
|
||||
* <p>Java class for ScanProcessingType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScanProcessingType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScanProcessingType", propOrder = {
|
||||
"author",
|
||||
"software",
|
||||
"softwareVersion"
|
||||
})
|
||||
public class ScanProcessingType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
|
||||
/**
|
||||
* Gets the value of the author property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the author property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the software property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the software property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the softwareVersion property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the softwareVersion property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
}
|
||||
198
java/generated/ScanType.java
Normal file
198
java/generated/ScanType.java
Normal file
@@ -0,0 +1,198 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 ScanType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScanType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Scanner" type="{}ScannerType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="ScanProcessing" type="{}ScanProcessingType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="OCR" type="{}OCRType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScanType", propOrder = {
|
||||
"file",
|
||||
"checksums",
|
||||
"scanner",
|
||||
"scanProcessing",
|
||||
"ocr"
|
||||
})
|
||||
public class ScanType {
|
||||
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Scanner")
|
||||
protected List<ScannerType> scanner;
|
||||
@XmlElement(name = "ScanProcessing")
|
||||
protected List<ScanProcessingType> scanProcessing;
|
||||
@XmlElement(name = "OCR")
|
||||
protected List<OCRType> ocr;
|
||||
|
||||
/**
|
||||
* Gets the value of the file property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public FileType getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the file property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileType }
|
||||
*
|
||||
*/
|
||||
public void setFile(FileType value) {
|
||||
this.file = 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 scanner 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 scanner property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getScanner().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ScannerType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ScannerType> getScanner() {
|
||||
if (scanner == null) {
|
||||
scanner = new ArrayList<ScannerType>();
|
||||
}
|
||||
return this.scanner;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scanProcessing 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 scanProcessing property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getScanProcessing().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ScanProcessingType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ScanProcessingType> getScanProcessing() {
|
||||
if (scanProcessing == null) {
|
||||
scanProcessing = new ArrayList<ScanProcessingType>();
|
||||
}
|
||||
return this.scanProcessing;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ocr 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 ocr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOCR().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link OCRType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<OCRType> getOCR() {
|
||||
if (ocr == null) {
|
||||
ocr = new ArrayList<OCRType>();
|
||||
}
|
||||
return this.ocr;
|
||||
}
|
||||
|
||||
}
|
||||
211
java/generated/ScannerType.java
Normal file
211
java/generated/ScannerType.java
Normal file
@@ -0,0 +1,211 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Information about scanning
|
||||
*
|
||||
* <p>Java class for ScannerType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScannerType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Serial" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Software" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="SoftwareVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScannerType", propOrder = {
|
||||
"author",
|
||||
"manufacturer",
|
||||
"model",
|
||||
"serial",
|
||||
"software",
|
||||
"softwareVersion"
|
||||
})
|
||||
public class ScannerType {
|
||||
|
||||
@XmlElement(name = "Author", required = true)
|
||||
protected String author;
|
||||
@XmlElement(name = "Manufacturer", required = true)
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model", required = true)
|
||||
protected String model;
|
||||
@XmlElement(name = "Serial", required = true)
|
||||
protected String serial;
|
||||
@XmlElement(name = "Software", required = true)
|
||||
protected String software;
|
||||
@XmlElement(name = "SoftwareVersion", required = true)
|
||||
protected String softwareVersion;
|
||||
|
||||
/**
|
||||
* Gets the value of the author property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the author property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
this.author = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the manufacturer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getManufacturer() {
|
||||
return manufacturer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the manufacturer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setManufacturer(String value) {
|
||||
this.manufacturer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the model property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the model property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setModel(String value) {
|
||||
this.model = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the serial property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSerial() {
|
||||
return serial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the serial property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSerial(String value) {
|
||||
this.serial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the software property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftware() {
|
||||
return software;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the software property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftware(String value) {
|
||||
this.software = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the softwareVersion property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSoftwareVersion() {
|
||||
return softwareVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the softwareVersion property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSoftwareVersion(String value) {
|
||||
this.softwareVersion = value;
|
||||
}
|
||||
|
||||
}
|
||||
97
java/generated/ScansType.java
Normal file
97
java/generated/ScansType.java
Normal file
@@ -0,0 +1,97 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ScansType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ScansType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseScan" type="{}CaseScanType" minOccurs="0"/>
|
||||
* <element name="DiscScan" type="{}DiscScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScansType", propOrder = {
|
||||
"caseScan",
|
||||
"discScan"
|
||||
})
|
||||
public class ScansType {
|
||||
|
||||
@XmlElement(name = "CaseScan")
|
||||
protected CaseScanType caseScan;
|
||||
@XmlElement(name = "DiscScan")
|
||||
protected DiscScanType discScan;
|
||||
|
||||
/**
|
||||
* Gets the value of the caseScan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public CaseScanType getCaseScan() {
|
||||
return caseScan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the caseScan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CaseScanType }
|
||||
*
|
||||
*/
|
||||
public void setCaseScan(CaseScanType value) {
|
||||
this.caseScan = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the discScan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DiscScanType }
|
||||
*
|
||||
*/
|
||||
public DiscScanType getDiscScan() {
|
||||
return discScan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discScan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DiscScanType }
|
||||
*
|
||||
*/
|
||||
public void setDiscScan(DiscScanType value) {
|
||||
this.discScan = value;
|
||||
}
|
||||
|
||||
}
|
||||
86
java/generated/SectorsType.java
Normal file
86
java/generated/SectorsType.java
Normal file
@@ -0,0 +1,86 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 SectorsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SectorsType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>long">
|
||||
* <attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SectorsType", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class SectorsType {
|
||||
|
||||
@XmlValue
|
||||
protected long value;
|
||||
@XmlAttribute(name = "layer")
|
||||
protected Integer layer;
|
||||
|
||||
/**
|
||||
* Gets the value of the value property.
|
||||
*
|
||||
*/
|
||||
public long getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the value property.
|
||||
*
|
||||
*/
|
||||
public void setValue(long value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the layer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the layer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
83
java/generated/SecuritySectorsType.java
Normal file
83
java/generated/SecuritySectorsType.java
Normal file
@@ -0,0 +1,83 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Start and end of XGD's security sectors
|
||||
*
|
||||
* <p>Java class for SecuritySectorsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SecuritySectorsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SecuritySectorsType", propOrder = {
|
||||
"start",
|
||||
"end"
|
||||
})
|
||||
public class SecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "Start")
|
||||
protected long start;
|
||||
@XmlElement(name = "End")
|
||||
protected long end;
|
||||
|
||||
/**
|
||||
* Gets the value of the start property.
|
||||
*
|
||||
*/
|
||||
public long getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the start property.
|
||||
*
|
||||
*/
|
||||
public void setStart(long value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the end property.
|
||||
*
|
||||
*/
|
||||
public long getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the end property.
|
||||
*
|
||||
*/
|
||||
public void setEnd(long value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
}
|
||||
179
java/generated/SequenceType.java
Normal file
179
java/generated/SequenceType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Sequence information about a disc
|
||||
*
|
||||
* <p>Java class for SequenceType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SequenceType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DiscTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Disc" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="TotalDiscs">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Side">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <maxInclusive value="2"/>
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Layer" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="0"/>
|
||||
* <maxInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SequenceType", propOrder = {
|
||||
"discTitle",
|
||||
"disc",
|
||||
"totalDiscs",
|
||||
"side",
|
||||
"layer"
|
||||
})
|
||||
public class SequenceType {
|
||||
|
||||
@XmlElement(name = "DiscTitle", required = true)
|
||||
protected String discTitle;
|
||||
@XmlElement(name = "Disc")
|
||||
protected int disc;
|
||||
@XmlElement(name = "TotalDiscs")
|
||||
protected int totalDiscs;
|
||||
@XmlElement(name = "Side")
|
||||
protected int side;
|
||||
@XmlElement(name = "Layer")
|
||||
protected Integer layer;
|
||||
|
||||
/**
|
||||
* Gets the value of the discTitle property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiscTitle() {
|
||||
return discTitle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discTitle property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiscTitle(String value) {
|
||||
this.discTitle = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the disc property.
|
||||
*
|
||||
*/
|
||||
public int getDisc() {
|
||||
return disc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the disc property.
|
||||
*
|
||||
*/
|
||||
public void setDisc(int value) {
|
||||
this.disc = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the totalDiscs property.
|
||||
*
|
||||
*/
|
||||
public int getTotalDiscs() {
|
||||
return totalDiscs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the totalDiscs property.
|
||||
*
|
||||
*/
|
||||
public void setTotalDiscs(int value) {
|
||||
this.totalDiscs = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the side property.
|
||||
*
|
||||
*/
|
||||
public int getSide() {
|
||||
return side;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the side property.
|
||||
*
|
||||
*/
|
||||
public void setSide(int value) {
|
||||
this.side = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the layer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the layer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
java/generated/SoftwareType.java
Normal file
127
java/generated/SoftwareType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Software used for disc reading
|
||||
*
|
||||
* <p>Java class for SoftwareType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SoftwareType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="OperatingSystem" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SoftwareType", propOrder = {
|
||||
"name",
|
||||
"version",
|
||||
"operatingSystem"
|
||||
})
|
||||
public class SoftwareType {
|
||||
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version", required = true)
|
||||
protected String version;
|
||||
@XmlElement(name = "OperatingSystem", required = true)
|
||||
protected String operatingSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the version property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the version property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the operatingSystem property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOperatingSystem() {
|
||||
return operatingSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the operatingSystem property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOperatingSystem(String value) {
|
||||
this.operatingSystem = value;
|
||||
}
|
||||
|
||||
}
|
||||
127
java/generated/SubChannelType.java
Normal file
127
java/generated/SubChannelType.java
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Track's subchannel information
|
||||
*
|
||||
* <p>Java class for SubChannelType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubChannelType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubChannelType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"checksums"
|
||||
})
|
||||
public class SubChannelType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
protected String size;
|
||||
@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.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the size property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSize(String value) {
|
||||
this.size = 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;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/SubcategoriesType.java
Normal file
76
java/generated/SubcategoriesType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 SubcategoriesType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubcategoriesType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Subcategory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubcategoriesType", propOrder = {
|
||||
"subcategory"
|
||||
})
|
||||
public class SubcategoriesType {
|
||||
|
||||
@XmlElement(name = "Subcategory", required = true)
|
||||
protected List<String> subcategory;
|
||||
|
||||
/**
|
||||
* Gets the value of the subcategory 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 subcategory property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSubcategory().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getSubcategory() {
|
||||
if (subcategory == null) {
|
||||
subcategory = new ArrayList<String>();
|
||||
}
|
||||
return this.subcategory;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/SystemsType.java
Normal file
76
java/generated/SystemsType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 SystemsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SystemsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="System" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SystemsType", propOrder = {
|
||||
"system"
|
||||
})
|
||||
public class SystemsType {
|
||||
|
||||
@XmlElement(name = "System")
|
||||
protected List<String> system;
|
||||
|
||||
/**
|
||||
* Gets the value of the system 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 system property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSystem().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getSystem() {
|
||||
if (system == null) {
|
||||
system = new ArrayList<String>();
|
||||
}
|
||||
return this.system;
|
||||
}
|
||||
|
||||
}
|
||||
89
java/generated/TrackSequenceType.java
Normal file
89
java/generated/TrackSequenceType.java
Normal file
@@ -0,0 +1,89 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Sequence information about a track
|
||||
*
|
||||
* <p>Java class for TrackSequenceType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackSequenceType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackSequenceType", propOrder = {
|
||||
"trackNumber",
|
||||
"session"
|
||||
})
|
||||
public class TrackSequenceType {
|
||||
|
||||
@XmlElement(name = "TrackNumber")
|
||||
protected int trackNumber;
|
||||
@XmlElement(name = "Session")
|
||||
protected int session;
|
||||
|
||||
/**
|
||||
* Gets the value of the trackNumber property.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the trackNumber property.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the session property.
|
||||
*
|
||||
*/
|
||||
public int getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the session property.
|
||||
*
|
||||
*/
|
||||
public void setSession(int value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
}
|
||||
398
java/generated/TrackType.java
Normal file
398
java/generated/TrackType.java
Normal file
@@ -0,0 +1,398 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Track information
|
||||
*
|
||||
* <p>Java class for TrackType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="TrackType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Sequence" type="{}TrackSequenceType"/>
|
||||
* <element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="TrackType">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="audio"/>
|
||||
* <enumeration value="mode0"/>
|
||||
* <enumeration value="mode1"/>
|
||||
* <enumeration value="mode2"/>
|
||||
* <enumeration value="m2f1"/>
|
||||
* <enumeration value="m2f2"/>
|
||||
* <enumeration value="dvd"/>
|
||||
* <enumeration value="hddvd"/>
|
||||
* <enumeration value="bluray"/>
|
||||
* <enumeration value="ddcd"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="SubChannel" type="{}SubChannelType" minOccurs="0"/>
|
||||
* <element name="FileSystemInformation" type="{}FileSystemInformationType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "TrackType", propOrder = {
|
||||
"image",
|
||||
"size",
|
||||
"sequence",
|
||||
"startMSF",
|
||||
"endMSF",
|
||||
"startSector",
|
||||
"endSector",
|
||||
"trackType",
|
||||
"bytesPerSector",
|
||||
"accoustID",
|
||||
"checksums",
|
||||
"subChannel",
|
||||
"fileSystemInformation"
|
||||
})
|
||||
public class TrackType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
protected String size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected TrackSequenceType sequence;
|
||||
@XmlElement(name = "StartMSF")
|
||||
protected String startMSF;
|
||||
@XmlElement(name = "EndMSF")
|
||||
protected String endMSF;
|
||||
@XmlElement(name = "StartSector")
|
||||
protected long startSector;
|
||||
@XmlElement(name = "EndSector")
|
||||
protected long endSector;
|
||||
@XmlElement(name = "TrackType", required = true)
|
||||
protected String trackType;
|
||||
@XmlElement(name = "BytesPerSector")
|
||||
protected int bytesPerSector;
|
||||
@XmlElement(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "SubChannel")
|
||||
protected SubChannelType subChannel;
|
||||
@XmlElement(name = "FileSystemInformation")
|
||||
protected FileSystemInformationType fileSystemInformation;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the size property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSize(String value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the sequence property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public TrackSequenceType getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sequence property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TrackSequenceType }
|
||||
*
|
||||
*/
|
||||
public void setSequence(TrackSequenceType value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startMSF property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStartMSF() {
|
||||
return startMSF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startMSF property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStartMSF(String value) {
|
||||
this.startMSF = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the endMSF property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEndMSF() {
|
||||
return endMSF;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the endMSF property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEndMSF(String value) {
|
||||
this.endMSF = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startSector property.
|
||||
*
|
||||
*/
|
||||
public long getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startSector property.
|
||||
*
|
||||
*/
|
||||
public void setStartSector(long value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the endSector property.
|
||||
*
|
||||
*/
|
||||
public long getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the endSector property.
|
||||
*
|
||||
*/
|
||||
public void setEndSector(long value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the trackType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTrackType() {
|
||||
return trackType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the trackType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTrackType(String value) {
|
||||
this.trackType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the bytesPerSector property.
|
||||
*
|
||||
*/
|
||||
public int getBytesPerSector() {
|
||||
return bytesPerSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the bytesPerSector property.
|
||||
*
|
||||
*/
|
||||
public void setBytesPerSector(int value) {
|
||||
this.bytesPerSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accoustID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccoustID() {
|
||||
return accoustID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accoustID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccoustID(String value) {
|
||||
this.accoustID = 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 subChannel property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public SubChannelType getSubChannel() {
|
||||
return subChannel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the subChannel property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SubChannelType }
|
||||
*
|
||||
*/
|
||||
public void setSubChannel(SubChannelType value) {
|
||||
this.subChannel = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the fileSystemInformation property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public FileSystemInformationType getFileSystemInformation() {
|
||||
return fileSystemInformation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the fileSystemInformation property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FileSystemInformationType }
|
||||
*
|
||||
*/
|
||||
public void setFileSystemInformation(FileSystemInformationType value) {
|
||||
this.fileSystemInformation = value;
|
||||
}
|
||||
|
||||
}
|
||||
147
java/generated/UserManualType.java
Normal file
147
java/generated/UserManualType.java
Normal file
@@ -0,0 +1,147 @@
|
||||
//
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* User manual or user guide accompanying this set. Can be more than one.
|
||||
*
|
||||
* <p>Java class for UserManualType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="UserManualType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "UserManualType", propOrder = {
|
||||
"language",
|
||||
"pages",
|
||||
"pageSize",
|
||||
"scan"
|
||||
})
|
||||
public class UserManualType {
|
||||
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected int pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
protected ScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public LanguagesType getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LanguagesType }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(LanguagesType value) {
|
||||
this.language = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pages property.
|
||||
*
|
||||
*/
|
||||
public int getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pages property.
|
||||
*
|
||||
*/
|
||||
public void setPages(int value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pageSize property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pageSize property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPageSize(String value) {
|
||||
this.pageSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public ScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ScanType }
|
||||
*
|
||||
*/
|
||||
public void setScan(ScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
76
java/generated/XboxSecuritySectorsType.java
Normal file
76
java/generated/XboxSecuritySectorsType.java
Normal 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: 2015.11.07 at 02:55:57 AM WET
|
||||
//
|
||||
|
||||
|
||||
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 XboxSecuritySectorsType complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="XboxSecuritySectorsType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SecuritySectors" type="{}SecuritySectorsType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "XboxSecuritySectorsType", propOrder = {
|
||||
"securitySectors"
|
||||
})
|
||||
public class XboxSecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "SecuritySectors", required = true)
|
||||
protected List<SecuritySectorsType> securitySectors;
|
||||
|
||||
/**
|
||||
* Gets the value of the securitySectors 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 securitySectors property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getSecuritySectors().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link SecuritySectorsType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<SecuritySectorsType> getSecuritySectors() {
|
||||
if (securitySectors == null) {
|
||||
securitySectors = new ArrayList<SecuritySectorsType>();
|
||||
}
|
||||
return this.securitySectors;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user