org.fpml.fpml_5.confirmation.TradingInstructionOverride 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 structure that identifies settlement instructions to override default settlement instructions, for a particular trade/allocation.
*
* Java class for TradingInstructionOverride complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TradingInstructionOverride">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="overrideIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}OverrideIdentifier"/>
* <sequence>
* <choice>
* <element name="allocationIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}LoanAllocationIdentifier"/>
* <element name="loanTradeReference" type="{http://www.fpml.org/FpML-5/confirmation}LoanTradeReference"/>
* </choice>
* <element name="settlementDetails" type="{http://www.fpml.org/FpML-5/confirmation}SettlementDetails" maxOccurs="unbounded"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TradingInstructionOverride", propOrder = {
"overrideIdentifier",
"allocationIdentifier",
"loanTradeReference",
"settlementDetails"
})
public class TradingInstructionOverride {
@XmlElement(required = true)
protected OverrideIdentifier overrideIdentifier;
protected LoanAllocationIdentifier allocationIdentifier;
protected LoanTradeReference loanTradeReference;
@XmlElement(required = true)
protected List settlementDetails;
/**
* Gets the value of the overrideIdentifier property.
*
* @return
* possible object is
* {@link OverrideIdentifier }
*
*/
public OverrideIdentifier getOverrideIdentifier() {
return overrideIdentifier;
}
/**
* Sets the value of the overrideIdentifier property.
*
* @param value
* allowed object is
* {@link OverrideIdentifier }
*
*/
public void setOverrideIdentifier(OverrideIdentifier value) {
this.overrideIdentifier = value;
}
/**
* Gets the value of the allocationIdentifier property.
*
* @return
* possible object is
* {@link LoanAllocationIdentifier }
*
*/
public LoanAllocationIdentifier getAllocationIdentifier() {
return allocationIdentifier;
}
/**
* Sets the value of the allocationIdentifier property.
*
* @param value
* allowed object is
* {@link LoanAllocationIdentifier }
*
*/
public void setAllocationIdentifier(LoanAllocationIdentifier value) {
this.allocationIdentifier = value;
}
/**
* Gets the value of the loanTradeReference property.
*
* @return
* possible object is
* {@link LoanTradeReference }
*
*/
public LoanTradeReference getLoanTradeReference() {
return loanTradeReference;
}
/**
* Sets the value of the loanTradeReference property.
*
* @param value
* allowed object is
* {@link LoanTradeReference }
*
*/
public void setLoanTradeReference(LoanTradeReference value) {
this.loanTradeReference = value;
}
/**
* Gets the value of the settlementDetails 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 settlementDetails property.
*
*
* For example, to add a new item, do as follows:
*
* getSettlementDetails().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SettlementDetails }
*
*
*/
public List getSettlementDetails() {
if (settlementDetails == null) {
settlementDetails = new ArrayList();
}
return this.settlementDetails;
}
}