summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-07-04 15:13:57 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-07-04 15:13:57 +0200
commit804dc4bcd6b3b0edbeae3e002727ace91ad77797 (patch)
treeeb7a82bc7935cc32cf9dd6d4a74970192bf00b77 /src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java
parent257f9b3de552defd8062635e3031c3d0c8ac42d4 (diff)
downloadegovutils-804dc4bcd6b3b0edbeae3e002727ace91ad77797.tar.gz
egovutils-804dc4bcd6b3b0edbeae3e002727ace91ad77797.tar.bz2
egovutils-804dc4bcd6b3b0edbeae3e002727ace91ad77797.zip
change SZR-GW webservice and MIS-STORK webservice for monitoring
Diffstat (limited to 'src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java')
-rw-r--r--src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java b/src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java
index d191cc6..fccf7b3 100644
--- a/src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java
+++ b/src/main/java/at/gv/util/xsd/srzgw/CreateIdentityLinkRequest.java
@@ -3,6 +3,7 @@ package at.gv.util.xsd.srzgw;
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;
@@ -42,6 +43,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="Signature" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* &lt;element name="MIS" type="{http://reference.e-government.gv.at/namespace/szrgw/20070807/xsd}MISType" minOccurs="0"/>
* &lt;/sequence>
+ * &lt;attribute name="reqID" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
@@ -64,6 +66,8 @@ public class CreateIdentityLinkRequest {
protected byte[] signature;
@XmlElement(name = "MIS")
protected MISType mis;
+ @XmlAttribute(name = "reqID")
+ protected String reqID;
/**
* Gets the value of the pepsData property.
@@ -135,6 +139,30 @@ public class CreateIdentityLinkRequest {
this.mis = 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.