org.fpml.fpml_5.confirmation.FutureValueAmount 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 java.math.BigInteger;
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 type defining a currency amount as at a future value date.
*
* Java class for FutureValueAmount complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FutureValueAmount">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney">
* <sequence>
* <element name="calculationPeriodNumberOfDays" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* <element name="valueDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FutureValueAmount", propOrder = {
"calculationPeriodNumberOfDays",
"valueDate"
})
public class FutureValueAmount
extends NonNegativeMoney
{
@XmlElement(required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger calculationPeriodNumberOfDays;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valueDate;
/**
* Gets the value of the calculationPeriodNumberOfDays property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCalculationPeriodNumberOfDays() {
return calculationPeriodNumberOfDays;
}
/**
* Sets the value of the calculationPeriodNumberOfDays property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCalculationPeriodNumberOfDays(BigInteger value) {
this.calculationPeriodNumberOfDays = value;
}
/**
* Gets the value of the valueDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValueDate() {
return valueDate;
}
/**
* Sets the value of the valueDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValueDate(XMLGregorianCalendar value) {
this.valueDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy