package org.kapott.hbci.sepa.jaxb.pain_002_003_03; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; 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 OriginalGroupInformationSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="OriginalGroupInformationSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="OrgnlMsgId" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}Max35Text"/> * <element name="OrgnlMsgNmId" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}Max35Text"/> * <element name="OrgnlNbOfTxs" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}Max15NumericText" minOccurs="0"/> * <element name="OrgnlCtrlSum" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}DecimalNumber" minOccurs="0"/> * <element name="GrpSts" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}TransactionGroupStatusCodeSEPA" minOccurs="0"/> * <element name="StsRsnInf" type="{urn:iso:std:iso:20022:tech:xsd:pain.002.003.03}StatusReasonInformationSEPA" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OriginalGroupInformationSEPA", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", propOrder = { "orgnlMsgId", "orgnlMsgNmId", "orgnlNbOfTxs", "orgnlCtrlSum", "grpSts", "stsRsnInf" }) public class OriginalGroupInformationSEPA { @XmlElement(name = "OrgnlMsgId", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", required = true) protected String orgnlMsgId; @XmlElement(name = "OrgnlMsgNmId", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03", required = true) protected String orgnlMsgNmId; @XmlElement(name = "OrgnlNbOfTxs", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03") protected String orgnlNbOfTxs; @XmlElement(name = "OrgnlCtrlSum", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03") protected BigDecimal orgnlCtrlSum; @XmlElement(name = "GrpSts", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03") protected TransactionGroupStatusCodeSEPA grpSts; @XmlElement(name = "StsRsnInf", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.002.003.03") protected List<StatusReasonInformationSEPA> stsRsnInf; /** * Gets the value of the orgnlMsgId property. * * @return * possible object is * {@link String } * */ public String getOrgnlMsgId() { return orgnlMsgId; } /** * Sets the value of the orgnlMsgId property. * * @param value * allowed object is * {@link String } * */ public void setOrgnlMsgId(String value) { this.orgnlMsgId = value; } /** * Gets the value of the orgnlMsgNmId property. * * @return * possible object is * {@link String } * */ public String getOrgnlMsgNmId() { return orgnlMsgNmId; } /** * Sets the value of the orgnlMsgNmId property. * * @param value * allowed object is * {@link String } * */ public void setOrgnlMsgNmId(String value) { this.orgnlMsgNmId = value; } /** * Gets the value of the orgnlNbOfTxs property. * * @return * possible object is * {@link String } * */ public String getOrgnlNbOfTxs() { return orgnlNbOfTxs; } /** * Sets the value of the orgnlNbOfTxs property. * * @param value * allowed object is * {@link String } * */ public void setOrgnlNbOfTxs(String value) { this.orgnlNbOfTxs = value; } /** * Gets the value of the orgnlCtrlSum property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getOrgnlCtrlSum() { return orgnlCtrlSum; } /** * Sets the value of the orgnlCtrlSum property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setOrgnlCtrlSum(BigDecimal value) { this.orgnlCtrlSum = value; } /** * Gets the value of the grpSts property. * * @return * possible object is * {@link TransactionGroupStatusCodeSEPA } * */ public TransactionGroupStatusCodeSEPA getGrpSts() { return grpSts; } /** * Sets the value of the grpSts property. * * @param value * allowed object is * {@link TransactionGroupStatusCodeSEPA } * */ public void setGrpSts(TransactionGroupStatusCodeSEPA value) { this.grpSts = value; } /** * Gets the value of the stsRsnInf property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the stsRsnInf property. * * <p> * For example, to add a new item, do as follows: * <pre> * getStsRsnInf().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link StatusReasonInformationSEPA } * * */ public List<StatusReasonInformationSEPA> getStsRsnInf() { if (stsRsnInf == null) { stsRsnInf = new ArrayList<StatusReasonInformationSEPA>(); } return this.stsRsnInf; } }