// // 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: 2015.12.31 at 05:27:48 PM WET // 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; /** *

Java class for ChecksumType complex type. * *

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

 * <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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ChecksumType", propOrder = { "value" }) public class ChecksumType { @XmlValue protected String value; @XmlAttribute(name = "type", required = true) protected String type; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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; } }