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

org.fpml.fpml_5.confirmation.LoanTradingSettlementTaskDates 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 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 structure that details key dates related to a task that is a prerequisite to trade settlement.
 * 
 * 

Java class for LoanTradingSettlementTaskDates complex type. * *

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

 * <complexType name="LoanTradingSettlementTaskDates">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="raisedDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="expectedDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="clearedDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoanTradingSettlementTaskDates", propOrder = { "raisedDate", "expectedDate", "clearedDate" }) public class LoanTradingSettlementTaskDates { @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar raisedDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar expectedDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar clearedDate; /** * Gets the value of the raisedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRaisedDate() { return raisedDate; } /** * Sets the value of the raisedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRaisedDate(XMLGregorianCalendar value) { this.raisedDate = value; } /** * Gets the value of the expectedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpectedDate() { return expectedDate; } /** * Sets the value of the expectedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpectedDate(XMLGregorianCalendar value) { this.expectedDate = value; } /** * Gets the value of the clearedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getClearedDate() { return clearedDate; } /** * Sets the value of the clearedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setClearedDate(XMLGregorianCalendar value) { this.clearedDate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy