diff options
Diffstat (limited to 'src/main/java/at/gv/util/xsd/misstork')
-rw-r--r-- | src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java b/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java index 52a3a67..78210d5 100644 --- a/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java +++ b/src/main/java/at/gv/util/xsd/misstork/MisStorkRequest.java @@ -4,6 +4,7 @@ package at.gv.util.xsd.misstork; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @@ -72,6 +73,7 @@ import at.gv.util.xsd.persondata.CorporateBodyType; * </element> * </sequence> * </choice> + * <attribute name="reqID" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> @@ -110,6 +112,8 @@ public class MisStorkRequest { protected MisStorkRequest.Mandator mandator; @XmlElement(name = "Representative") protected MisStorkRequest.Representative representative; + @XmlAttribute(name = "reqID") + protected String reqID; /** * Gets the value of the storkMandateType property. @@ -303,6 +307,30 @@ public class MisStorkRequest { this.representative = value; } + /** + * Gets the value of the reqID property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReqID() { + return reqID; + } + + /** + * Sets the value of the reqID property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReqID(String value) { + this.reqID = value; + } + /** * <p>Java class for anonymous complex type. |