org.fpml.fpml_5.confirmation.SettlementPeriod 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.math.BigDecimal;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for SettlementPeriod complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SettlementPeriod">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="expiryDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="settlementDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="notionalAmount" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementPeriod", propOrder = {
"expiryDate",
"settlementDate",
"notionalAmount"
})
@XmlSeeAlso({
FxTargetSettlementPeriod.class,
FxAccrualSettlementPeriod.class
})
public abstract class SettlementPeriod {
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar expiryDate;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar settlementDate;
@XmlElement(required = true)
protected BigDecimal notionalAmount;
/**
* Gets the value of the expiryDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExpiryDate() {
return expiryDate;
}
/**
* Sets the value of the expiryDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExpiryDate(XMLGregorianCalendar value) {
this.expiryDate = value;
}
/**
* Gets the value of the settlementDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSettlementDate() {
return settlementDate;
}
/**
* Sets the value of the settlementDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSettlementDate(XMLGregorianCalendar value) {
this.settlementDate = value;
}
/**
* Gets the value of the notionalAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getNotionalAmount() {
return notionalAmount;
}
/**
* Sets the value of the notionalAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setNotionalAmount(BigDecimal value) {
this.notionalAmount = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy