net.finmath.smartcontract.product.xml.RoutingExplicitDetails Maven / Gradle / Ivy
Show all versions of finmath-smart-derivative-contract 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.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
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.XmlType;
/**
* A type that models name, address and supplementary textual information for
* the purposes of identifying a party involved in the routing of a payment.
*
*
* Java class for RoutingExplicitDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RoutingExplicitDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <group ref="{http://www.fpml.org/FpML-5/confirmation}RoutingExplicitDetails.model"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RoutingExplicitDetails", propOrder = {
"routingName",
"routingAddress",
"routingAccountNumber",
"routingReferenceText"
})
public class RoutingExplicitDetails {
@XmlElement(required = true)
protected String routingName;
protected Address routingAddress;
protected String routingAccountNumber;
protected List routingReferenceText;
/**
* 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 Jakarta XML Binding 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;
}
}