net.finmath.smartcontract.product.xml.FloatingAmountCalculation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for FloatingAmountCalculation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FloatingAmountCalculation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="calculationAmount" type="{http://www.fpml.org/FpML-5/confirmation}CalculationAmount" minOccurs="0"/>
* <element name="floatingRate" type="{http://www.fpml.org/FpML-5/confirmation}FloatingRateCalculation"/>
* <element name="dayCountFraction" type="{http://www.fpml.org/FpML-5/confirmation}DayCountFraction" minOccurs="0"/>
* <element name="initialFixingDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="finalFixingDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableDate" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FloatingAmountCalculation", propOrder = {
"calculationAmount",
"floatingRate",
"dayCountFraction",
"initialFixingDate",
"finalFixingDate"
})
public class FloatingAmountCalculation {
protected CalculationAmount calculationAmount;
@XmlElement(required = true)
protected FloatingRateCalculation floatingRate;
protected DayCountFraction dayCountFraction;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar initialFixingDate;
protected AdjustableDate finalFixingDate;
/**
* Gets the value of the calculationAmount property.
*
* @return
* possible object is
* {@link CalculationAmount }
*
*/
public CalculationAmount getCalculationAmount() {
return calculationAmount;
}
/**
* Sets the value of the calculationAmount property.
*
* @param value
* allowed object is
* {@link CalculationAmount }
*
*/
public void setCalculationAmount(CalculationAmount value) {
this.calculationAmount = value;
}
/**
* Gets the value of the floatingRate property.
*
* @return
* possible object is
* {@link FloatingRateCalculation }
*
*/
public FloatingRateCalculation getFloatingRate() {
return floatingRate;
}
/**
* Sets the value of the floatingRate property.
*
* @param value
* allowed object is
* {@link FloatingRateCalculation }
*
*/
public void setFloatingRate(FloatingRateCalculation value) {
this.floatingRate = value;
}
/**
* Gets the value of the dayCountFraction property.
*
* @return
* possible object is
* {@link DayCountFraction }
*
*/
public DayCountFraction getDayCountFraction() {
return dayCountFraction;
}
/**
* Sets the value of the dayCountFraction property.
*
* @param value
* allowed object is
* {@link DayCountFraction }
*
*/
public void setDayCountFraction(DayCountFraction value) {
this.dayCountFraction = value;
}
/**
* Gets the value of the initialFixingDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getInitialFixingDate() {
return initialFixingDate;
}
/**
* Sets the value of the initialFixingDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setInitialFixingDate(XMLGregorianCalendar value) {
this.initialFixingDate = value;
}
/**
* Gets the value of the finalFixingDate property.
*
* @return
* possible object is
* {@link AdjustableDate }
*
*/
public AdjustableDate getFinalFixingDate() {
return finalFixingDate;
}
/**
* Sets the value of the finalFixingDate property.
*
* @param value
* allowed object is
* {@link AdjustableDate }
*
*/
public void setFinalFixingDate(AdjustableDate value) {
this.finalFixingDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy