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>
|
2017-06-08 21:53:29 +01:00
|
|
|
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
2019-04-23 00:10:05 +01:00
|
|
|
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
2015-11-07 03:13:57 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package generated;
|
|
|
|
|
|
2017-06-08 21:56:34 +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;
|
2017-06-08 21:56:34 +01:00
|
|
|
import javax.xml.bind.annotation.XmlSchemaType;
|
2015-11-07 03:13:57 +00:00
|
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>Clase Java para ExtentType complex type.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:53:29 +01: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
|
|
|
* <complexType name="ExtentType">
|
|
|
|
|
* <complexContent>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
|
|
* <sequence>
|
|
|
|
|
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
|
|
|
|
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </complexContent>
|
|
|
|
|
* </complexType>
|
2015-11-07 03:13:57 +00:00
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlType(name = "ExtentType", propOrder = {
|
|
|
|
|
"start",
|
|
|
|
|
"end"
|
|
|
|
|
})
|
|
|
|
|
public class ExtentType {
|
|
|
|
|
|
2017-06-08 21:56:34 +01:00
|
|
|
@XmlElement(name = "Start", required = true)
|
|
|
|
|
@XmlSchemaType(name = "unsignedLong")
|
|
|
|
|
protected BigInteger start;
|
|
|
|
|
@XmlElement(name = "End", required = true)
|
|
|
|
|
@XmlSchemaType(name = "unsignedLong")
|
|
|
|
|
protected BigInteger end;
|
2015-11-07 03:13:57 +00:00
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad start.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:56:34 +01:00
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 03:13:57 +00:00
|
|
|
*/
|
2017-06-08 21:56:34 +01:00
|
|
|
public BigInteger getStart() {
|
2015-11-07 03:13:57 +00:00
|
|
|
return start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad start.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:56:34 +01:00
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 03:13:57 +00:00
|
|
|
*/
|
2017-06-08 21:56:34 +01:00
|
|
|
public void setStart(BigInteger value) {
|
2015-11-07 03:13:57 +00:00
|
|
|
this.start = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad end.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:56:34 +01:00
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 03:13:57 +00:00
|
|
|
*/
|
2017-06-08 21:56:34 +01:00
|
|
|
public BigInteger getEnd() {
|
2015-11-07 03:13:57 +00:00
|
|
|
return end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad end.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-08 21:56:34 +01:00
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link BigInteger }
|
|
|
|
|
*
|
2015-11-07 03:13:57 +00:00
|
|
|
*/
|
2017-06-08 21:56:34 +01:00
|
|
|
public void setEnd(BigInteger value) {
|
2015-11-07 03:13:57 +00:00
|
|
|
this.end = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|