From 269cee30ed94b35b9c774470e590c03f92186e8a Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Mon, 3 Mar 2014 16:54:37 +0100 Subject: update SZRGW client update MIS-STORK client --- .../gv/util/xsd/mis/MandateIssueRequestType.java | 107 ++------------------- .../java/at/gv/util/xsd/mis/ObjectFactory.java | 16 +-- src/main/java/at/gv/util/xsd/mis/Target.java | 94 ++++++++++++++++++ 3 files changed, 108 insertions(+), 109 deletions(-) create mode 100644 src/main/java/at/gv/util/xsd/mis/Target.java (limited to 'src/main/java/at/gv/util/xsd/mis') diff --git a/src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java b/src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java index aef6e1b..0c67da5 100644 --- a/src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java +++ b/src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java @@ -44,18 +44,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; * </complexContent> * </complexType> * </element> - * <element name="Target" minOccurs="0"> - * <complexType> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> - * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> - * </element> + * <element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}Target" minOccurs="0"/> * </sequence> * <element name="SessionID" type="{http://www.w3.org/2001/XMLSchema}string"/> * </choice> @@ -94,7 +83,7 @@ public class MandateIssueRequestType { @XmlElement(name = "Filters") protected MandateIssueRequestType.Filters filters; @XmlElement(name = "Target") - protected MandateIssueRequestType.Target target; + protected Target target; @XmlElement(name = "SessionID") protected String sessionID; @@ -243,10 +232,10 @@ public class MandateIssueRequestType { * * @return * possible object is - * {@link MandateIssueRequestType.Target } + * {@link Target } * */ - public MandateIssueRequestType.Target getTarget() { + public Target getTarget() { return target; } @@ -255,10 +244,10 @@ public class MandateIssueRequestType { * * @param value * allowed object is - * {@link MandateIssueRequestType.Target } + * {@link Target } * */ - public void setTarget(MandateIssueRequestType.Target value) { + public void setTarget(Target value) { this.target = value; } @@ -341,88 +330,4 @@ public class MandateIssueRequestType { } - - /** - *

Java class for anonymous complex type. - * - *

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

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
-     *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "type", - "value" - }) - public static class Target { - - @XmlElement(name = "Type", required = true) - @XmlSchemaType(name = "anyURI") - protected String type; - @XmlElement(name = "Value") - protected String 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; - } - - /** - * 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; - } - - } - } diff --git a/src/main/java/at/gv/util/xsd/mis/ObjectFactory.java b/src/main/java/at/gv/util/xsd/mis/ObjectFactory.java index 415559b..5e58d91 100644 --- a/src/main/java/at/gv/util/xsd/mis/ObjectFactory.java +++ b/src/main/java/at/gv/util/xsd/mis/ObjectFactory.java @@ -58,6 +58,14 @@ public class ObjectFactory { return new MandateIssueRequestType(); } + /** + * Create an instance of {@link Target } + * + */ + public Target createTarget() { + return new Target(); + } + /** * Create an instance of {@link MandateIdentifiers } * @@ -90,14 +98,6 @@ public class ObjectFactory { return new MandateIssueRequestType.Filters(); } - /** - * Create an instance of {@link MandateIssueRequestType.Target } - * - */ - public MandateIssueRequestType.Target createMandateIssueRequestTypeTarget() { - return new MandateIssueRequestType.Target(); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link MandateIssueRequestType }{@code >}} * diff --git a/src/main/java/at/gv/util/xsd/mis/Target.java b/src/main/java/at/gv/util/xsd/mis/Target.java new file mode 100644 index 0000000..c853769 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/mis/Target.java @@ -0,0 +1,94 @@ + +package at.gv.util.xsd.mis; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for anonymous complex type. + * + *

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

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
+ *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "type", + "value" +}) +@XmlRootElement(name = "Target") +public class Target { + + @XmlElement(name = "Type", required = true) + @XmlSchemaType(name = "anyURI") + protected String type; + @XmlElement(name = "Value") + protected String 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; + } + + /** + * 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; + } + +} -- cgit v1.2.3