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

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


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

import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;


/**
 * Details of the instructions from the bank.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BankInstructions1", propOrder = {
    "txt",
    "lastDtForRspn"
})
public class BankInstructions1 {

    @XmlElement(name = "Txt")
    protected List txt;
    @XmlElement(name = "LastDtForRspn", type = String.class)
    @XmlJavaTypeAdapter(IsoDateAdapter.class)
    @XmlSchemaType(name = "date")
    protected LocalDate lastDtForRspn;

    /**
     * Gets the value of the txt 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 {@code set} method for the txt property. * *

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

     *    getTxt().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the txt property. */ public List getTxt() { if (txt == null) { txt = new ArrayList<>(); } return this.txt; } /** * Gets the value of the lastDtForRspn property. * * @return * possible object is * {@link String } * */ public LocalDate getLastDtForRspn() { return lastDtForRspn; } /** * Sets the value of the lastDtForRspn property. * * @param value * allowed object is * {@link String } * */ public BankInstructions1 setLastDtForRspn(LocalDate value) { this.lastDtForRspn = value; return this; } @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 txt list. * @see #getTxt() * */ public BankInstructions1 addTxt(String txt) { getTxt().add(txt); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy