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; /** *

Java class for IdentityLinkType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="IdentityLinkType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
 *         <element name="Assertion" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="AdditionalInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @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; } }