package org.kapott.hbci.sepa.jaxb.pain_001_001_02; 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 Party5Choice complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Party5Choice"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="OrgId" type="{urn:sepade:xsd:pain.001.001.02}OrganisationIdentification2"/> * <element name="PrvtId" type="{urn:sepade:xsd:pain.001.001.02}PersonIdentification3"/> * </choice> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Party5Choice", namespace = "urn:sepade:xsd:pain.001.001.02", propOrder = { "orgId", "prvtId" }) public class Party5Choice { @XmlElement(name = "OrgId", namespace = "urn:sepade:xsd:pain.001.001.02") protected OrganisationIdentification2 orgId; @XmlElement(name = "PrvtId", namespace = "urn:sepade:xsd:pain.001.001.02") protected PersonIdentification3 prvtId; /** * Gets the value of the orgId property. * * @return * possible object is * {@link OrganisationIdentification2 } * */ public OrganisationIdentification2 getOrgId() { return orgId; } /** * Sets the value of the orgId property. * * @param value * allowed object is * {@link OrganisationIdentification2 } * */ public void setOrgId(OrganisationIdentification2 value) { this.orgId = value; } /** * Gets the value of the prvtId property. * * @return * possible object is * {@link PersonIdentification3 } * */ public PersonIdentification3 getPrvtId() { return prvtId; } /** * Sets the value of the prvtId property. * * @param value * allowed object is * {@link PersonIdentification3 } * */ public void setPrvtId(PersonIdentification3 value) { this.prvtId = value; } }