org.fpml.fpml_5.confirmation.FinalCalculationPeriodDateAdjustment 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.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
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;
/**
* A type to define business date convention adjustment to final payment period per leg.
*
* Java class for FinalCalculationPeriodDateAdjustment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FinalCalculationPeriodDateAdjustment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="relevantUnderlyingDateReference" type="{http://www.fpml.org/FpML-5/confirmation}RelevantUnderlyingDateReference"/>
* <element name="swapStreamReference" type="{http://www.fpml.org/FpML-5/confirmation}InterestRateStreamReference"/>
* <element name="businessDayConvention" type="{http://www.fpml.org/FpML-5/confirmation}BusinessDayConventionEnum"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinalCalculationPeriodDateAdjustment", propOrder = {
"relevantUnderlyingDateReference",
"swapStreamReference",
"businessDayConvention"
})
public class FinalCalculationPeriodDateAdjustment {
@XmlElement(required = true)
protected RelevantUnderlyingDateReference relevantUnderlyingDateReference;
@XmlElement(required = true)
protected InterestRateStreamReference swapStreamReference;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected BusinessDayConventionEnum businessDayConvention;
/**
* Gets the value of the relevantUnderlyingDateReference property.
*
* @return
* possible object is
* {@link RelevantUnderlyingDateReference }
*
*/
public RelevantUnderlyingDateReference getRelevantUnderlyingDateReference() {
return relevantUnderlyingDateReference;
}
/**
* Sets the value of the relevantUnderlyingDateReference property.
*
* @param value
* allowed object is
* {@link RelevantUnderlyingDateReference }
*
*/
public void setRelevantUnderlyingDateReference(RelevantUnderlyingDateReference value) {
this.relevantUnderlyingDateReference = value;
}
/**
* Gets the value of the swapStreamReference property.
*
* @return
* possible object is
* {@link InterestRateStreamReference }
*
*/
public InterestRateStreamReference getSwapStreamReference() {
return swapStreamReference;
}
/**
* Sets the value of the swapStreamReference property.
*
* @param value
* allowed object is
* {@link InterestRateStreamReference }
*
*/
public void setSwapStreamReference(InterestRateStreamReference value) {
this.swapStreamReference = value;
}
/**
* Gets the value of the businessDayConvention property.
*
* @return
* possible object is
* {@link BusinessDayConventionEnum }
*
*/
public BusinessDayConventionEnum getBusinessDayConvention() {
return businessDayConvention;
}
/**
* Sets the value of the businessDayConvention property.
*
* @param value
* allowed object is
* {@link BusinessDayConventionEnum }
*
*/
public void setBusinessDayConvention(BusinessDayConventionEnum value) {
this.businessDayConvention = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy