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

org.fpml.fpml_5.confirmation.LoanSettlementDateAvailabilityEvent 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.math.BigInteger;
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;


/**
 * An event structure defining information related to trade settlement date coordination.
 * 
 * 

Java class for LoanSettlementDateAvailabilityEvent complex type. * *

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

 * <complexType name="LoanSettlementDateAvailabilityEvent">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractLoanAllocationEvent">
 *       <sequence>
 *         <sequence>
 *           <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}Money" maxOccurs="unbounded"/>
 *         </sequence>
 *         <choice>
 *           <element name="specificDates" type="{http://www.fpml.org/FpML-5/confirmation}DateList"/>
 *           <group ref="{http://www.fpml.org/FpML-5/confirmation}Period.model"/>
 *           <element name="onOrAfterDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         </choice>
 *         <sequence minOccurs="0">
 *           <element name="leadDays" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 *           <element name="cutOffTime" type="{http://www.w3.org/2001/XMLSchema}time"/>
 *         </sequence>
 *         <element name="noSettlePeriod" type="{http://www.fpml.org/FpML-5/confirmation}LoanAllocationNoSettlePeriod" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoanSettlementDateAvailabilityEvent", propOrder = { "amount", "specificDates", "startDate", "endDate", "onOrAfterDate", "leadDays", "cutOffTime", "noSettlePeriod" }) public class LoanSettlementDateAvailabilityEvent extends AbstractLoanAllocationEvent { @XmlElement(required = true) protected List amount; protected DateList specificDates; @XmlSchemaType(name = "date") protected XMLGregorianCalendar startDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar endDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar onOrAfterDate; @XmlSchemaType(name = "positiveInteger") protected BigInteger leadDays; @XmlSchemaType(name = "time") protected XMLGregorianCalendar cutOffTime; protected List noSettlePeriod; /** * Gets the value of the amount 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 amount property. * *

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

     *    getAmount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Money } * * */ public List getAmount() { if (amount == null) { amount = new ArrayList(); } return this.amount; } /** * Gets the value of the specificDates property. * * @return * possible object is * {@link DateList } * */ public DateList getSpecificDates() { return specificDates; } /** * Sets the value of the specificDates property. * * @param value * allowed object is * {@link DateList } * */ public void setSpecificDates(DateList value) { this.specificDates = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndDate(XMLGregorianCalendar value) { this.endDate = value; } /** * Gets the value of the onOrAfterDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getOnOrAfterDate() { return onOrAfterDate; } /** * Sets the value of the onOrAfterDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setOnOrAfterDate(XMLGregorianCalendar value) { this.onOrAfterDate = value; } /** * Gets the value of the leadDays property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getLeadDays() { return leadDays; } /** * Sets the value of the leadDays property. * * @param value * allowed object is * {@link BigInteger } * */ public void setLeadDays(BigInteger value) { this.leadDays = value; } /** * Gets the value of the cutOffTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCutOffTime() { return cutOffTime; } /** * Sets the value of the cutOffTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCutOffTime(XMLGregorianCalendar value) { this.cutOffTime = value; } /** * Gets the value of the noSettlePeriod 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 noSettlePeriod property. * *

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

     *    getNoSettlePeriod().add(newItem);
     * 
* * *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy