package org.kapott.hbci.sepa.jaxb.pain_002_003_03; 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 RestrictedPersonIdentificationSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RestrictedPersonIdentificationSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Id" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}RestrictedPersonIdentifierSEPA"/> * <element name="SchmeNm" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}RestrictedPersonIdentificationSchemeNameSEPA"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RestrictedPersonIdentificationSEPA", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", propOrder = { "id", "schmeNm" }) public class RestrictedPersonIdentificationSEPA { @XmlElement(name = "Id", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", required = true) protected String id; @XmlElement(name = "SchmeNm", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", required = true) protected RestrictedPersonIdentificationSchemeNameSEPA schmeNm; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the schmeNm property. * * @return * possible object is * {@link RestrictedPersonIdentificationSchemeNameSEPA } * */ public RestrictedPersonIdentificationSchemeNameSEPA getSchmeNm() { return schmeNm; } /** * Sets the value of the schmeNm property. * * @param value * allowed object is * {@link RestrictedPersonIdentificationSchemeNameSEPA } * */ public void setSchmeNm(RestrictedPersonIdentificationSchemeNameSEPA value) { this.schmeNm = value; } }