net.finmath.smartcontract.product.xml.InterestLegCalculationPeriodDates 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Component that holds the various dates used to specify the interest leg of
* the return swap. It is used to define the InterestPeriodDates identifyer.
*
*
* Java class for InterestLegCalculationPeriodDates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InterestLegCalculationPeriodDates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="effectiveDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate"/>
* <element name="terminationDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate"/>
* <element name="interestLegResetDates" type="{http://www.fpml.org/FpML-5/confirmation}InterestLegResetDates"/>
* <element name="interestLegPaymentDates" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableRelativeOrPeriodicDates2"/>
* </sequence>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InterestLegCalculationPeriodDates", propOrder = {
"effectiveDate",
"terminationDate",
"interestLegResetDates",
"interestLegPaymentDates"
})
public class InterestLegCalculationPeriodDates {
@XmlElement(required = true)
protected AdjustableOrRelativeDate effectiveDate;
@XmlElement(required = true)
protected AdjustableOrRelativeDate terminationDate;
@XmlElement(required = true)
protected InterestLegResetDates interestLegResetDates;
@XmlElement(required = true)
protected AdjustableRelativeOrPeriodicDates2 interestLegPaymentDates;
@XmlAttribute(name = "id", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the effectiveDate property.
*
* @return
* possible object is
* {@link AdjustableOrRelativeDate }
*
*/
public AdjustableOrRelativeDate getEffectiveDate() {
return effectiveDate;
}
/**
* Sets the value of the effectiveDate property.
*
* @param value
* allowed object is
* {@link AdjustableOrRelativeDate }
*
*/
public void setEffectiveDate(AdjustableOrRelativeDate value) {
this.effectiveDate = value;
}
/**
* Gets the value of the terminationDate property.
*
* @return
* possible object is
* {@link AdjustableOrRelativeDate }
*
*/
public AdjustableOrRelativeDate getTerminationDate() {
return terminationDate;
}
/**
* Sets the value of the terminationDate property.
*
* @param value
* allowed object is
* {@link AdjustableOrRelativeDate }
*
*/
public void setTerminationDate(AdjustableOrRelativeDate value) {
this.terminationDate = value;
}
/**
* Gets the value of the interestLegResetDates property.
*
* @return
* possible object is
* {@link InterestLegResetDates }
*
*/
public InterestLegResetDates getInterestLegResetDates() {
return interestLegResetDates;
}
/**
* Sets the value of the interestLegResetDates property.
*
* @param value
* allowed object is
* {@link InterestLegResetDates }
*
*/
public void setInterestLegResetDates(InterestLegResetDates value) {
this.interestLegResetDates = value;
}
/**
* Gets the value of the interestLegPaymentDates property.
*
* @return
* possible object is
* {@link AdjustableRelativeOrPeriodicDates2 }
*
*/
public AdjustableRelativeOrPeriodicDates2 getInterestLegPaymentDates() {
return interestLegPaymentDates;
}
/**
* Sets the value of the interestLegPaymentDates property.
*
* @param value
* allowed object is
* {@link AdjustableRelativeOrPeriodicDates2 }
*
*/
public void setInterestLegPaymentDates(AdjustableRelativeOrPeriodicDates2 value) {
this.interestLegPaymentDates = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy