net.finmath.smartcontract.product.xml.FixedRateAccrual 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 java.math.BigDecimal;
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;
/**
* A full definition of the fixed rate accrual characteristics of a loan
* contract. This structure defines both the underlying base rate as well as any additional margins and
* costs associated with the loan contract.
*
*
* Java class for FixedRateAccrual complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FixedRateAccrual">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}FixedRateOptionBase">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}PeriodWithDays.model"/>
* <sequence minOccurs="0">
* <element name="penaltySpread" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="defaultSpread" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="mandatoryCostRate" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="allInRate" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* </sequence>
* <element name="paymentProjection" type="{http://www.fpml.org/FpML-5/confirmation}PaymentProjection" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FixedRateAccrual", propOrder = {
"startDate",
"endDate",
"numberOfDays",
"penaltySpread",
"defaultSpread",
"mandatoryCostRate",
"allInRate",
"paymentProjection"
})
public class FixedRateAccrual
extends FixedRateOptionBase
{
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDate;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDate;
@XmlElement(required = true)
protected BigDecimal numberOfDays;
protected BigDecimal penaltySpread;
protected BigDecimal defaultSpread;
protected BigDecimal mandatoryCostRate;
protected BigDecimal allInRate;
protected PaymentProjection paymentProjection;
/**
* 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 numberOfDays property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getNumberOfDays() {
return numberOfDays;
}
/**
* Sets the value of the numberOfDays property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setNumberOfDays(BigDecimal value) {
this.numberOfDays = value;
}
/**
* Gets the value of the penaltySpread property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPenaltySpread() {
return penaltySpread;
}
/**
* Sets the value of the penaltySpread property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPenaltySpread(BigDecimal value) {
this.penaltySpread = value;
}
/**
* Gets the value of the defaultSpread property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDefaultSpread() {
return defaultSpread;
}
/**
* Sets the value of the defaultSpread property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDefaultSpread(BigDecimal value) {
this.defaultSpread = value;
}
/**
* Gets the value of the mandatoryCostRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMandatoryCostRate() {
return mandatoryCostRate;
}
/**
* Sets the value of the mandatoryCostRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMandatoryCostRate(BigDecimal value) {
this.mandatoryCostRate = value;
}
/**
* Gets the value of the allInRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAllInRate() {
return allInRate;
}
/**
* Sets the value of the allInRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAllInRate(BigDecimal value) {
this.allInRate = value;
}
/**
* Gets the value of the paymentProjection property.
*
* @return
* possible object is
* {@link PaymentProjection }
*
*/
public PaymentProjection getPaymentProjection() {
return paymentProjection;
}
/**
* Sets the value of the paymentProjection property.
*
* @param value
* allowed object is
* {@link PaymentProjection }
*
*/
public void setPaymentProjection(PaymentProjection value) {
this.paymentProjection = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy