// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.04.12 at 12:22:50 PM GMT // package eu.stork.peps.complex.attributes.crue.academic.xsd.language.diplomasupplement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlID; 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; /** * Attachment resource * *

* Java class for AttachedType complex type. * *

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

 * <complexType name="AttachedType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="FileData" type="{urn:crue:academic:xsd:language:diplomasupplement}AttachedFileDataType"/>
 *         <element name="FileURI" type="{urn:crue:academic:xsd:language:diplomasupplement}AttachedFileURLType"/>
 *         <element name="ImageData" type="{urn:crue:academic:xsd:language:diplomasupplement}AttachedImageDataType"/>
 *         <element name="ImageURI" type="{urn:crue:academic:xsd:language:diplomasupplement}AttachedImageURLType"/>
 *       </choice>
 *       <attribute name="attachedID" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttachedType", propOrder = { "fileData", "fileURI", "imageData", "imageURI" }) public class AttachedType { @XmlElement(name = "FileData") protected AttachedFileDataType fileData; @XmlElement(name = "FileURI") protected AttachedFileURLType fileURI; @XmlElement(name = "ImageData") protected AttachedImageDataType imageData; @XmlElement(name = "ImageURI") protected AttachedImageURLType imageURI; @XmlAttribute(name = "attachedID", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String attachedID; /** * Gets the value of the fileData property. * * @return possible object is {@link AttachedFileDataType } * */ public AttachedFileDataType getFileData() { return fileData; } /** * Sets the value of the fileData property. * * @param value * allowed object is {@link AttachedFileDataType } * */ public void setFileData(AttachedFileDataType value) { this.fileData = value; } /** * Gets the value of the fileURI property. * * @return possible object is {@link AttachedFileURLType } * */ public AttachedFileURLType getFileURI() { return fileURI; } /** * Sets the value of the fileURI property. * * @param value * allowed object is {@link AttachedFileURLType } * */ public void setFileURI(AttachedFileURLType value) { this.fileURI = value; } /** * Gets the value of the imageData property. * * @return possible object is {@link AttachedImageDataType } * */ public AttachedImageDataType getImageData() { return imageData; } /** * Sets the value of the imageData property. * * @param value * allowed object is {@link AttachedImageDataType } * */ public void setImageData(AttachedImageDataType value) { this.imageData = value; } /** * Gets the value of the imageURI property. * * @return possible object is {@link AttachedImageURLType } * */ public AttachedImageURLType getImageURI() { return imageURI; } /** * Sets the value of the imageURI property. * * @param value * allowed object is {@link AttachedImageURLType } * */ public void setImageURI(AttachedImageURLType value) { this.imageURI = value; } /** * Gets the value of the attachedID property. * * @return possible object is {@link String } * */ public String getAttachedID() { return attachedID; } /** * Sets the value of the attachedID property. * * @param value * allowed object is {@link String } * */ public void setAttachedID(String value) { this.attachedID = value; } }