All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.LimitReportOrError2Choice Maven / Gradle / Ivy


package com.prowidesoftware.swift.model.mx.dic;

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;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;


/**
 * Choice between details of one or more limits set by the member (or on behalf of the member) and managed by the transaction administrator or an operational error when the requested data cannot be retrieved.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LimitReportOrError2Choice", propOrder = {
    "bizRpt",
    "oprlErr"
})
public class LimitReportOrError2Choice {

    @XmlElement(name = "BizRpt")
    protected Limits5 bizRpt;
    @XmlElement(name = "OprlErr")
    protected List oprlErr;

    /**
     * Gets the value of the bizRpt property.
     * 
     * @return
     *     possible object is
     *     {@link Limits5 }
     *     
     */
    public Limits5 getBizRpt() {
        return bizRpt;
    }

    /**
     * Sets the value of the bizRpt property.
     * 
     * @param value
     *     allowed object is
     *     {@link Limits5 }
     *     
     */
    public LimitReportOrError2Choice setBizRpt(Limits5 value) {
        this.bizRpt = value;
        return this;
    }

    /**
     * Gets the value of the oprlErr 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 JAXB object. * This is why there is not a set method for the oprlErr property. * *

* For example, to add a new item, do as follows: *

     *    getOprlErr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ErrorHandling4 } * * */ public List getOprlErr() { if (oprlErr == null) { oprlErr = new ArrayList(); } return this.oprlErr; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); } @Override public boolean equals(Object that) { return EqualsBuilder.reflectionEquals(this, that); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } /** * Adds a new item to the oprlErr list. * @see #getOprlErr() * */ public LimitReportOrError2Choice addOprlErr(ErrorHandling4 oprlErr) { getOprlErr().add(oprlErr); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy