126 lines
3.6 KiB
Java
126 lines
3.6 KiB
Java
//
|
|
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
|
|
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
|
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
|
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
|
//
|
|
|
|
|
|
package generated;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlAttribute;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
import javax.xml.bind.annotation.XmlValue;
|
|
|
|
|
|
/**
|
|
* <p>Clase Java para ChecksumType complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <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;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad value.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad value.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad type.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad type.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setType(String value) {
|
|
this.type = value;
|
|
}
|
|
|
|
}
|