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 ++------------------- 1 file changed, 6 insertions(+), 101 deletions(-) (limited to 'src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java') 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; - } - - } - } -- cgit v1.2.3