2015-11-07 03:13:57 +00:00
|
|
|
//
|
2017-06-04 04:58:48 +01:00
|
|
|
// 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: 2017.06.04 at 04:57:33 AM WEST
|
2015-11-07 03:13:57 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-04 04:58:48 +01:00
|
|
|
* <p>Java class for ChecksumType complex type.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
2017-06-04 04:58:48 +01:00
|
|
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* <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;
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-04 04:58:48 +01:00
|
|
|
* Gets the value of the value property.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getValue() {
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-04 04:58:48 +01:00
|
|
|
* Sets the value of the value property.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setValue(String value) {
|
|
|
|
|
this.value = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-04 04:58:48 +01:00
|
|
|
* Gets the value of the type property.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getType() {
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-04 04:58:48 +01:00
|
|
|
* Sets the value of the type property.
|
2015-11-07 03:13:57 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setType(String value) {
|
|
|
|
|
this.type = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|