// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.06.04 at 04:57:33 AM WEST // package generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for PartitionType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <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>
 * 
* * */ @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; } }