com.webcohesion.ofx4j.generated.EmailResponseMessageSetV1 Maven / Gradle / Ivy
Show all versions of ofx4j Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.09 at 02:21:09 PM MDT
//
package com.webcohesion.ofx4j.generated;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlType;
/**
*
* The OFX element "EMAILMSGSRSV1" is of type "EmailResponseMessageSetV1"
*
*
* Java class for EmailResponseMessageSetV1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EmailResponseMessageSetV1">
* <complexContent>
* <extension base="{http://ofx.net/types/2003/04}AbstractResponseMessageSet">
* <choice maxOccurs="unbounded">
* <element name="MAILTRNRS" type="{http://ofx.net/types/2003/04}MailTransactionResponse"/>
* <element name="MAILSYNCRS" type="{http://ofx.net/types/2003/04}MailSyncResponse"/>
* <element name="GETMIMETRNRS" type="{http://ofx.net/types/2003/04}GetMimeTransactionResponse"/>
* </choice>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EmailResponseMessageSetV1", propOrder = {
"mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS"
})
public class EmailResponseMessageSetV1
extends AbstractResponseMessageSet
{
@XmlElements({
@XmlElement(name = "MAILTRNRS", type = MailTransactionResponse.class),
@XmlElement(name = "MAILSYNCRS", type = MailSyncResponse.class),
@XmlElement(name = "GETMIMETRNRS", type = GetMimeTransactionResponse.class)
})
protected List mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS;
/**
* Gets the value of the mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS property.
*
*
* 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 Jakarta XML Binding object.
* This is why there is not a set
method for the mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS property.
*
*
* For example, to add a new item, do as follows:
*
* getMAILTRNRSOrMAILSYNCRSOrGETMIMETRNRS().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MailTransactionResponse }
* {@link MailSyncResponse }
* {@link GetMimeTransactionResponse }
*
*
*/
public List getMAILTRNRSOrMAILSYNCRSOrGETMIMETRNRS() {
if (mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS == null) {
mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS = new ArrayList();
}
return this.mailtrnrsOrMAILSYNCRSOrGETMIMETRNRS;
}
}