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

org.fpml.fpml_5.confirmation.ClearingStatusItem Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * A component of a clearing status report. This provides the clearing status for a single trade.
 * 
 * 

Java class for ClearingStatusItem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ClearingStatusItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="tradeIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}TradeIdentifier" maxOccurs="unbounded"/>
 *           <group ref="{http://www.fpml.org/FpML-5/confirmation}TradeReferenceInformation.model"/>
 *           <element name="trade" type="{http://www.fpml.org/FpML-5/confirmation}Trade"/>
 *           <element name="tradePackage" type="{http://www.fpml.org/FpML-5/confirmation}TradePackage"/>
 *         </choice>
 *         <element name="clearingStatusValue" type="{http://www.fpml.org/FpML-5/confirmation}ClearingStatusValue"/>
 *         <element name="updatedDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="reason" type="{http://www.fpml.org/FpML-5/confirmation}Reason" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="statusAppliesTo" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" maxOccurs="2" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClearingStatusItem", propOrder = { "tradeIdentifier", "tradeReferenceInformation", "trade", "tradePackage", "clearingStatusValue", "updatedDateTime", "reason", "statusAppliesTo" }) public class ClearingStatusItem { protected List tradeIdentifier; protected TradeReferenceInformation tradeReferenceInformation; protected Trade trade; protected TradePackage tradePackage; @XmlElement(required = true) protected ClearingStatusValue clearingStatusValue; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updatedDateTime; protected List reason; protected List statusAppliesTo; /** * Gets the value of the tradeIdentifier 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 tradeIdentifier property. * *

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

     *    getTradeIdentifier().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TradeIdentifier } * * */ public List getTradeIdentifier() { if (tradeIdentifier == null) { tradeIdentifier = new ArrayList(); } return this.tradeIdentifier; } /** * Gets the value of the tradeReferenceInformation property. * * @return * possible object is * {@link TradeReferenceInformation } * */ public TradeReferenceInformation getTradeReferenceInformation() { return tradeReferenceInformation; } /** * Sets the value of the tradeReferenceInformation property. * * @param value * allowed object is * {@link TradeReferenceInformation } * */ public void setTradeReferenceInformation(TradeReferenceInformation value) { this.tradeReferenceInformation = value; } /** * Gets the value of the trade property. * * @return * possible object is * {@link Trade } * */ public Trade getTrade() { return trade; } /** * Sets the value of the trade property. * * @param value * allowed object is * {@link Trade } * */ public void setTrade(Trade value) { this.trade = value; } /** * Gets the value of the tradePackage property. * * @return * possible object is * {@link TradePackage } * */ public TradePackage getTradePackage() { return tradePackage; } /** * Sets the value of the tradePackage property. * * @param value * allowed object is * {@link TradePackage } * */ public void setTradePackage(TradePackage value) { this.tradePackage = value; } /** * Gets the value of the clearingStatusValue property. * * @return * possible object is * {@link ClearingStatusValue } * */ public ClearingStatusValue getClearingStatusValue() { return clearingStatusValue; } /** * Sets the value of the clearingStatusValue property. * * @param value * allowed object is * {@link ClearingStatusValue } * */ public void setClearingStatusValue(ClearingStatusValue value) { this.clearingStatusValue = value; } /** * Gets the value of the updatedDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getUpdatedDateTime() { return updatedDateTime; } /** * Sets the value of the updatedDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setUpdatedDateTime(XMLGregorianCalendar value) { this.updatedDateTime = value; } /** * Gets the value of the reason 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 reason property. * *

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

     *    getReason().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Reason } * * */ public List getReason() { if (reason == null) { reason = new ArrayList(); } return this.reason; } /** * Gets the value of the statusAppliesTo 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 statusAppliesTo property. * *

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

     *    getStatusAppliesTo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyReference } * * */ public List getStatusAppliesTo() { if (statusAppliesTo == null) { statusAppliesTo = new ArrayList(); } return this.statusAppliesTo; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy