From f71531346c6be197957311712ba093e024545e37 Mon Sep 17 00:00:00 2001 From: Florian Reimair Date: Fri, 7 Aug 2015 13:24:09 +0200 Subject: preparing the old code for the merge --- .../language/diplomasupplement/AttachedType.java | 266 ++++++++++----------- 1 file changed, 123 insertions(+), 143 deletions(-) (limited to 'id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/AttachedType.java') diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/AttachedType.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/AttachedType.java index ba693c9a0..9f9cca5d7 100644 --- a/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/AttachedType.java +++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/complex/attributes/crue/academic/xsd/language/diplomasupplement/AttachedType.java @@ -5,7 +5,6 @@ // 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; @@ -18,13 +17,14 @@ 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. + *

+ * Java class for AttachedType complex type. * - *

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

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

  * <complexType name="AttachedType">
@@ -45,146 +45,126 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "AttachedType", propOrder = {
-    "fileData",
-    "fileURI",
-    "imageData",
-    "imageURI"
-})
+@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;
-    }
+	@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;
+	}
 
 }
-- 
cgit v1.2.3