net.finmath.smartcontract.product.xml.MakeWholeAmount 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* A complex type to specify the amount to be paid by the buyer of the option
* if the option is exercised prior to the Early Call Date (Typically applicable to the convertible bond
* options).
*
*
* Java class for MakeWholeAmount complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MakeWholeAmount">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}SwapCurveValuation">
* <sequence>
* <element name="interpolationMethod" type="{http://www.fpml.org/FpML-5/confirmation}InterpolationMethod" minOccurs="0"/>
* <element name="earlyCallDate" type="{http://www.fpml.org/FpML-5/confirmation}IdentifiedDate"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MakeWholeAmount", propOrder = {
"interpolationMethod",
"earlyCallDate"
})
public class MakeWholeAmount
extends SwapCurveValuation
{
protected InterpolationMethod interpolationMethod;
@XmlElement(required = true)
protected IdentifiedDate earlyCallDate;
/**
* Gets the value of the interpolationMethod property.
*
* @return
* possible object is
* {@link InterpolationMethod }
*
*/
public InterpolationMethod getInterpolationMethod() {
return interpolationMethod;
}
/**
* Sets the value of the interpolationMethod property.
*
* @param value
* allowed object is
* {@link InterpolationMethod }
*
*/
public void setInterpolationMethod(InterpolationMethod value) {
this.interpolationMethod = value;
}
/**
* Gets the value of the earlyCallDate property.
*
* @return
* possible object is
* {@link IdentifiedDate }
*
*/
public IdentifiedDate getEarlyCallDate() {
return earlyCallDate;
}
/**
* Sets the value of the earlyCallDate property.
*
* @param value
* allowed object is
* {@link IdentifiedDate }
*
*/
public void setEarlyCallDate(IdentifiedDate value) {
this.earlyCallDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy