aboutsummaryrefslogtreecommitdiff
path: root/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java
diff options
context:
space:
mode:
Diffstat (limited to 'moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java')
-rw-r--r--moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java47
1 files changed, 40 insertions, 7 deletions
diff --git a/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java b/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java
index cd118f2..7104ad8 100644
--- a/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java
+++ b/moaSig/moa-sig/src/generated/java/at/gv/egiz/moasig/CMSDataObjectInfoType.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// 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: 2016.06.09 at 06:28:21 AM CEST
+// Generated on: 2016.06.15 at 04:11:53 PM CEST
//
@@ -26,7 +26,14 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
- * &lt;element name="DataObject" type="{http://reference.e-government.gv.at/namespace/moa/20151109#}CMSDataObjectRequiredMetaType"/>
+ * &lt;element name="DataObject">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}CMSDataObjectRequiredMetaType">
+ * &lt;/extension>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
* &lt;/sequence>
* &lt;attribute name="Structure" use="required">
* &lt;simpleType>
@@ -53,7 +60,7 @@ import javax.xml.bind.annotation.XmlType;
public class CMSDataObjectInfoType {
@XmlElement(name = "DataObject", required = true)
- protected CMSDataObjectRequiredMetaType dataObject;
+ protected CMSDataObjectInfoType.DataObject dataObject;
@XmlAttribute(name = "Structure", required = true)
protected String structure;
@@ -62,10 +69,10 @@ public class CMSDataObjectInfoType {
*
* @return
* possible object is
- * {@link CMSDataObjectRequiredMetaType }
+ * {@link CMSDataObjectInfoType.DataObject }
*
*/
- public CMSDataObjectRequiredMetaType getDataObject() {
+ public CMSDataObjectInfoType.DataObject getDataObject() {
return dataObject;
}
@@ -74,10 +81,10 @@ public class CMSDataObjectInfoType {
*
* @param value
* allowed object is
- * {@link CMSDataObjectRequiredMetaType }
+ * {@link CMSDataObjectInfoType.DataObject }
*
*/
- public void setDataObject(CMSDataObjectRequiredMetaType value) {
+ public void setDataObject(CMSDataObjectInfoType.DataObject value) {
this.dataObject = value;
}
@@ -105,4 +112,30 @@ public class CMSDataObjectInfoType {
this.structure = value;
}
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}CMSDataObjectRequiredMetaType">
+ * &lt;/extension>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "")
+ public static class DataObject
+ extends CMSDataObjectRequiredMetaType
+ {
+
+
+ }
+
}