org.fpml.fpml_5.confirmation.DelayedDraw 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.04.04 at 04:56:21 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* A facility which can be drawn at any point during a pre-defined period after the initial deal closing date,
*
* Java class for DelayedDraw complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DelayedDraw">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractFacility">
* <sequence>
* <element name="delayedDraw" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="mustDrawByDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DelayedDraw", propOrder = {
"delayedDraw",
"mustDrawByDate"
})
public class DelayedDraw
extends AbstractFacility
{
protected boolean delayedDraw;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mustDrawByDate;
/**
* Gets the value of the delayedDraw property.
*
*/
public boolean isDelayedDraw() {
return delayedDraw;
}
/**
* Sets the value of the delayedDraw property.
*
*/
public void setDelayedDraw(boolean value) {
this.delayedDraw = value;
}
/**
* Gets the value of the mustDrawByDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMustDrawByDate() {
return mustDrawByDate;
}
/**
* Sets the value of the mustDrawByDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMustDrawByDate(XMLGregorianCalendar value) {
this.mustDrawByDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy