All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.product.xml.InterestLeg Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
//
// 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type describing the fixed income leg of the equity swap.
 *             
 * 
 * 

Java class for InterestLeg complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="InterestLeg">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}DirectionalLeg">
 *       <sequence>
 *         <element name="interestLegCalculationPeriodDates" type="{http://www.fpml.org/FpML-5/confirmation}InterestLegCalculationPeriodDates"/>
 *         <element name="notional" type="{http://www.fpml.org/FpML-5/confirmation}ReturnSwapNotional"/>
 *         <element name="interestAmount" type="{http://www.fpml.org/FpML-5/confirmation}LegAmount"/>
 *         <element name="interestCalculation" type="{http://www.fpml.org/FpML-5/confirmation}InterestCalculation"/>
 *         <element name="stubCalculationPeriod" type="{http://www.fpml.org/FpML-5/confirmation}StubCalculationPeriod" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterestLeg", propOrder = { "interestLegCalculationPeriodDates", "notional", "interestAmount", "interestCalculation", "stubCalculationPeriod" }) public class InterestLeg extends DirectionalLeg { @XmlElement(required = true) protected InterestLegCalculationPeriodDates interestLegCalculationPeriodDates; @XmlElement(required = true) protected ReturnSwapNotional notional; @XmlElement(required = true) protected LegAmount interestAmount; @XmlElement(required = true) protected InterestCalculation interestCalculation; protected StubCalculationPeriod stubCalculationPeriod; /** * Gets the value of the interestLegCalculationPeriodDates property. * * @return * possible object is * {@link InterestLegCalculationPeriodDates } * */ public InterestLegCalculationPeriodDates getInterestLegCalculationPeriodDates() { return interestLegCalculationPeriodDates; } /** * Sets the value of the interestLegCalculationPeriodDates property. * * @param value * allowed object is * {@link InterestLegCalculationPeriodDates } * */ public void setInterestLegCalculationPeriodDates(InterestLegCalculationPeriodDates value) { this.interestLegCalculationPeriodDates = value; } /** * Gets the value of the notional property. * * @return * possible object is * {@link ReturnSwapNotional } * */ public ReturnSwapNotional getNotional() { return notional; } /** * Sets the value of the notional property. * * @param value * allowed object is * {@link ReturnSwapNotional } * */ public void setNotional(ReturnSwapNotional value) { this.notional = value; } /** * Gets the value of the interestAmount property. * * @return * possible object is * {@link LegAmount } * */ public LegAmount getInterestAmount() { return interestAmount; } /** * Sets the value of the interestAmount property. * * @param value * allowed object is * {@link LegAmount } * */ public void setInterestAmount(LegAmount value) { this.interestAmount = value; } /** * Gets the value of the interestCalculation property. * * @return * possible object is * {@link InterestCalculation } * */ public InterestCalculation getInterestCalculation() { return interestCalculation; } /** * Sets the value of the interestCalculation property. * * @param value * allowed object is * {@link InterestCalculation } * */ public void setInterestCalculation(InterestCalculation value) { this.interestCalculation = value; } /** * Gets the value of the stubCalculationPeriod property. * * @return * possible object is * {@link StubCalculationPeriod } * */ public StubCalculationPeriod getStubCalculationPeriod() { return stubCalculationPeriod; } /** * Sets the value of the stubCalculationPeriod property. * * @param value * allowed object is * {@link StubCalculationPeriod } * */ public void setStubCalculationPeriod(StubCalculationPeriod value) { this.stubCalculationPeriod = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy