This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/java/generated/PartitionType.java

240 lines
5.9 KiB
Java
Raw Normal View History

2015-11-07 03:13:57 +00:00
//
2019-04-22 23:44:22 +01:00
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
2019-04-23 00:13:38 +01:00
// Generado el: 2019.04.23 a las 12:13:17 AM BST
2015-11-07 03:13:57 +00:00
//
package generated;
2019-04-23 00:10:05 +01:00
import java.math.BigInteger;
2015-11-07 03:13:57 +00:00
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
2019-04-23 00:10:05 +01:00
import javax.xml.bind.annotation.XmlSchemaType;
2015-11-07 03:13:57 +00:00
import javax.xml.bind.annotation.XmlType;
/**
* <p>Clase Java para PartitionType complex type.
2015-11-07 03:13:57 +00:00
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
2015-11-07 03:13:57 +00:00
*
* <pre>
2019-04-22 23:44:22 +01:00
* &lt;complexType name="PartitionType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Sequence"&gt;
* &lt;simpleType&gt;
2019-04-23 00:10:05 +01:00
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
2019-04-22 23:44:22 +01:00
* &lt;minInclusive value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
2019-04-23 00:10:05 +01:00
* &lt;element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
* &lt;element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/&gt;
2019-04-22 23:44:22 +01:00
* &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="FileSystems" type="{}FileSystemsType"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
2015-11-07 03:13:57 +00:00
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartitionType", propOrder = {
"sequence",
"name",
"type",
"startSector",
"endSector",
"description",
"fileSystems"
})
public class PartitionType {
@XmlElement(name = "Sequence")
2019-04-23 00:10:05 +01:00
protected long sequence;
2015-11-07 03:13:57 +00:00
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Type")
protected String type;
2019-04-23 00:10:05 +01:00
@XmlElement(name = "StartSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger startSector;
@XmlElement(name = "EndSector", required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger endSector;
2015-11-07 03:13:57 +00:00
@XmlElement(name = "Description")
protected String description;
@XmlElement(name = "FileSystems", required = true)
protected FileSystemsType fileSystems;
/**
* Obtiene el valor de la propiedad sequence.
2015-11-07 03:13:57 +00:00
*
*/
2019-04-23 00:10:05 +01:00
public long getSequence() {
2015-11-07 03:13:57 +00:00
return sequence;
}
/**
* Define el valor de la propiedad sequence.
2015-11-07 03:13:57 +00:00
*
*/
2019-04-23 00:10:05 +01:00
public void setSequence(long value) {
2015-11-07 03:13:57 +00:00
this.sequence = value;
}
/**
* Obtiene el valor de la propiedad name.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Define el valor de la propiedad name.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Obtiene el valor de la propiedad type.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Define el valor de la propiedad type.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Obtiene el valor de la propiedad startSector.
2015-11-07 03:13:57 +00:00
*
2019-04-23 00:10:05 +01:00
* @return
* possible object is
* {@link BigInteger }
*
2015-11-07 03:13:57 +00:00
*/
2019-04-23 00:10:05 +01:00
public BigInteger getStartSector() {
2015-11-07 03:13:57 +00:00
return startSector;
}
/**
* Define el valor de la propiedad startSector.
2015-11-07 03:13:57 +00:00
*
2019-04-23 00:10:05 +01:00
* @param value
* allowed object is
* {@link BigInteger }
*
2015-11-07 03:13:57 +00:00
*/
2019-04-23 00:10:05 +01:00
public void setStartSector(BigInteger value) {
2015-11-07 03:13:57 +00:00
this.startSector = value;
}
/**
* Obtiene el valor de la propiedad endSector.
2015-11-07 03:13:57 +00:00
*
2019-04-23 00:10:05 +01:00
* @return
* possible object is
* {@link BigInteger }
*
2015-11-07 03:13:57 +00:00
*/
2019-04-23 00:10:05 +01:00
public BigInteger getEndSector() {
2015-11-07 03:13:57 +00:00
return endSector;
}
/**
* Define el valor de la propiedad endSector.
2015-11-07 03:13:57 +00:00
*
2019-04-23 00:10:05 +01:00
* @param value
* allowed object is
* {@link BigInteger }
*
2015-11-07 03:13:57 +00:00
*/
2019-04-23 00:10:05 +01:00
public void setEndSector(BigInteger value) {
2015-11-07 03:13:57 +00:00
this.endSector = value;
}
/**
* Obtiene el valor de la propiedad description.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Define el valor de la propiedad description.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Obtiene el valor de la propiedad fileSystems.
2015-11-07 03:13:57 +00:00
*
* @return
* possible object is
* {@link FileSystemsType }
*
*/
public FileSystemsType getFileSystems() {
return fileSystems;
}
/**
* Define el valor de la propiedad fileSystems.
2015-11-07 03:13:57 +00:00
*
* @param value
* allowed object is
* {@link FileSystemsType }
*
*/
public void setFileSystems(FileSystemsType value) {
this.fileSystems = value;
}
}