net.finmath.smartcontract.product.xml.AccruingFeeOption 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;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Represents the accruing fee option associated within a facility.
*
*
* Java class for AccruingFeeOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccruingFeeOption">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}FeeRateOptionBase">
* <sequence>
* <element name="type" type="{http://www.fpml.org/FpML-5/confirmation}AccruingFeeType"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}PeriodOptionalEnd.model"/>
* <element name="calculationDefinition" type="{http://www.w3.org/2001/XMLSchema}normalizedString" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccruingFeeOption", propOrder = {
"type",
"startDate",
"endDate",
"calculationDefinition"
})
public class AccruingFeeOption
extends FeeRateOptionBase
{
@XmlElement(required = true)
protected AccruingFeeType type;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDate;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDate;
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String calculationDefinition;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link AccruingFeeType }
*
*/
public AccruingFeeType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link AccruingFeeType }
*
*/
public void setType(AccruingFeeType value) {
this.type = value;
}
/**
* 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 calculationDefinition property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCalculationDefinition() {
return calculationDefinition;
}
/**
* Sets the value of the calculationDefinition property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCalculationDefinition(String value) {
this.calculationDefinition = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy