package at.gv.util.xsd.zkopf; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Java class for zuseType complex type. * *

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

 * <complexType name="zuseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="edID" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
 *         <element name="ZUSEUrlID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MIMETypes" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="X509" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "zuseType", propOrder = { "edID", "zuseUrlID", "mimeTypes", "x509" }) public class ZuseType { @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String edID; @XmlElement(name = "ZUSEUrlID", required = true) protected String zuseUrlID; @XmlElement(name = "MIMETypes", required = true) protected String mimeTypes; @XmlElement(name = "X509") protected byte[] x509; /** * Gets the value of the edID property. * * @return * possible object is * {@link String } * */ public String getEdID() { return edID; } /** * Sets the value of the edID property. * * @param value * allowed object is * {@link String } * */ public void setEdID(String value) { this.edID = value; } /** * Gets the value of the zuseUrlID property. * * @return * possible object is * {@link String } * */ public String getZUSEUrlID() { return zuseUrlID; } /** * Sets the value of the zuseUrlID property. * * @param value * allowed object is * {@link String } * */ public void setZUSEUrlID(String value) { this.zuseUrlID = value; } /** * Gets the value of the mimeTypes property. * * @return * possible object is * {@link String } * */ public String getMIMETypes() { return mimeTypes; } /** * Sets the value of the mimeTypes property. * * @param value * allowed object is * {@link String } * */ public void setMIMETypes(String value) { this.mimeTypes = value; } /** * Gets the value of the x509 property. * * @return * possible object is * byte[] */ public byte[] getX509() { return x509; } /** * Sets the value of the x509 property. * * @param value * allowed object is * byte[] */ public void setX509(byte[] value) { this.x509 = ((byte[]) value); } }