diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-03 16:54:37 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-03 16:54:37 +0100 |
commit | 269cee30ed94b35b9c774470e590c03f92186e8a (patch) | |
tree | d2a0ab982379626ba8f2c237dde2d8c84a80d554 /src/main/java/at/gv/util/xsd/mis | |
parent | defceef8afef538555c13d33e344a89a828a3d97 (diff) | |
download | egovutils-269cee30ed94b35b9c774470e590c03f92186e8a.tar.gz egovutils-269cee30ed94b35b9c774470e590c03f92186e8a.tar.bz2 egovutils-269cee30ed94b35b9c774470e590c03f92186e8a.zip |
update SZRGW client
update MIS-STORK client
Diffstat (limited to 'src/main/java/at/gv/util/xsd/mis')
-rw-r--r-- | src/main/java/at/gv/util/xsd/mis/MandateIssueRequestType.java | 107 | ||||
-rw-r--r-- | src/main/java/at/gv/util/xsd/mis/ObjectFactory.java | 16 | ||||
-rw-r--r-- | src/main/java/at/gv/util/xsd/mis/Target.java | 94 |
3 files changed, 108 insertions, 109 deletions
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 { } - - /** - * <p>Java class for anonymous complex type. - * - * <p>The following schema fragment specifies the expected content contained within this class. - * - * <pre> - * <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> - * </pre> - * - * - */ - @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 @@ -59,6 +59,14 @@ public class ObjectFactory { } /** + * Create an instance of {@link Target } + * + */ + public Target createTarget() { + return new Target(); + } + + /** * Create an instance of {@link MandateIdentifiers } * */ @@ -91,14 +99,6 @@ public class ObjectFactory { } /** - * 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; + + +/** + * <p>Java class for anonymous complex type. + * + * <p>The following schema fragment specifies the expected content contained within this class. + * + * <pre> + * <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> + * </pre> + * + * + */ +@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; + } + +} |