summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java118
1 files changed, 118 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java b/src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java
new file mode 100644
index 0000000..42feaad
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/IdentityLinkType.java
@@ -0,0 +1,118 @@
+
+package at.gv.util.xsd.szr;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for IdentityLinkType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="IdentityLinkType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
+ * &lt;element name="Assertion" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ * &lt;element name="AdditionalInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "IdentityLinkType", propOrder = {
+ "personInfo",
+ "assertion",
+ "additionalInfo"
+})
+public class IdentityLinkType {
+
+ @XmlElement(name = "PersonInfo", required = true)
+ protected PersonInfoType personInfo;
+ @XmlElement(name = "Assertion", required = true)
+ protected Object assertion;
+ @XmlElement(name = "AdditionalInfo")
+ protected String additionalInfo;
+
+ /**
+ * Gets the value of the personInfo property.
+ *
+ * @return
+ * possible object is
+ * {@link PersonInfoType }
+ *
+ */
+ public PersonInfoType getPersonInfo() {
+ return personInfo;
+ }
+
+ /**
+ * Sets the value of the personInfo property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PersonInfoType }
+ *
+ */
+ public void setPersonInfo(PersonInfoType value) {
+ this.personInfo = value;
+ }
+
+ /**
+ * Gets the value of the assertion property.
+ *
+ * @return
+ * possible object is
+ * {@link Object }
+ *
+ */
+ public Object getAssertion() {
+ return assertion;
+ }
+
+ /**
+ * Sets the value of the assertion property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Object }
+ *
+ */
+ public void setAssertion(Object value) {
+ this.assertion = value;
+ }
+
+ /**
+ * Gets the value of the additionalInfo property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAdditionalInfo() {
+ return additionalInfo;
+ }
+
+ /**
+ * Sets the value of the additionalInfo property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAdditionalInfo(String value) {
+ this.additionalInfo = value;
+ }
+
+}