org.fpml.fpml_5.confirmation.RoutingIdsAndExplicitDetails Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
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;
/**
* A type that provides a combination of payment system identification codes with physical postal address details, for the purposes of identifying a party involved in the routing of a payment.
*
* Java class for RoutingIdsAndExplicitDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RoutingIdsAndExplicitDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="routingIds" type="{http://www.fpml.org/FpML-5/confirmation}RoutingIds" maxOccurs="unbounded"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}RoutingExplicitDetails.model"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RoutingIdsAndExplicitDetails", propOrder = {
"routingIds",
"routingName",
"routingAddress",
"routingAccountNumber",
"routingReferenceText"
})
public class RoutingIdsAndExplicitDetails {
@XmlElement(required = true)
protected List routingIds;
@XmlElement(required = true)
protected String routingName;
protected Address routingAddress;
protected String routingAccountNumber;
protected List routingReferenceText;
/**
* Gets the value of the routingIds 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 routingIds property.
*
*
* For example, to add a new item, do as follows:
*
* getRoutingIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RoutingIds }
*
*
*/
public List getRoutingIds() {
if (routingIds == null) {
routingIds = new ArrayList();
}
return this.routingIds;
}
/**
* Gets the value of the routingName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRoutingName() {
return routingName;
}
/**
* Sets the value of the routingName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRoutingName(String value) {
this.routingName = value;
}
/**
* Gets the value of the routingAddress property.
*
* @return
* possible object is
* {@link Address }
*
*/
public Address getRoutingAddress() {
return routingAddress;
}
/**
* Sets the value of the routingAddress property.
*
* @param value
* allowed object is
* {@link Address }
*
*/
public void setRoutingAddress(Address value) {
this.routingAddress = value;
}
/**
* Gets the value of the routingAccountNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRoutingAccountNumber() {
return routingAccountNumber;
}
/**
* Sets the value of the routingAccountNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRoutingAccountNumber(String value) {
this.routingAccountNumber = value;
}
/**
* Gets the value of the routingReferenceText 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 routingReferenceText property.
*
*
* For example, to add a new item, do as follows:
*
* getRoutingReferenceText().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getRoutingReferenceText() {
if (routingReferenceText == null) {
routingReferenceText = new ArrayList();
}
return this.routingReferenceText;
}
}