net.finmath.smartcontract.product.xml.DirectionalLegUnderlyer 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* An abstract base class for all directional leg types with effective date,
* termination date, and underlyer where a payer makes a stream of payments of greater than zero value to a
* receiver.
*
*
* Java class for DirectionalLegUnderlyer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DirectionalLegUnderlyer">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}DirectionalLeg">
* <sequence>
* <element name="underlyer" type="{http://www.fpml.org/FpML-5/confirmation}Underlyer"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}OptionSettlement.model"/>
* <element name="fxFeature" type="{http://www.fpml.org/FpML-5/confirmation}FxFeature" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DirectionalLegUnderlyer", propOrder = {
"underlyer",
"settlementType",
"settlementDate",
"settlementAmount",
"settlementCurrency",
"fxFeature"
})
@XmlSeeAlso({
DividendLeg.class,
DirectionalLegUnderlyerValuation.class
})
public abstract class DirectionalLegUnderlyer
extends DirectionalLeg
{
@XmlElement(required = true)
protected Underlyer underlyer;
@XmlSchemaType(name = "token")
protected SettlementTypeEnum settlementType;
protected AdjustableOrRelativeDate settlementDate;
protected Money settlementAmount;
protected Currency settlementCurrency;
protected FxFeature fxFeature;
/**
* Gets the value of the underlyer property.
*
* @return
* possible object is
* {@link Underlyer }
*
*/
public Underlyer getUnderlyer() {
return underlyer;
}
/**
* Sets the value of the underlyer property.
*
* @param value
* allowed object is
* {@link Underlyer }
*
*/
public void setUnderlyer(Underlyer value) {
this.underlyer = value;
}
/**
* Gets the value of the settlementType property.
*
* @return
* possible object is
* {@link SettlementTypeEnum }
*
*/
public SettlementTypeEnum getSettlementType() {
return settlementType;
}
/**
* Sets the value of the settlementType property.
*
* @param value
* allowed object is
* {@link SettlementTypeEnum }
*
*/
public void setSettlementType(SettlementTypeEnum value) {
this.settlementType = value;
}
/**
* Gets the value of the settlementDate property.
*
* @return
* possible object is
* {@link AdjustableOrRelativeDate }
*
*/
public AdjustableOrRelativeDate getSettlementDate() {
return settlementDate;
}
/**
* Sets the value of the settlementDate property.
*
* @param value
* allowed object is
* {@link AdjustableOrRelativeDate }
*
*/
public void setSettlementDate(AdjustableOrRelativeDate value) {
this.settlementDate = value;
}
/**
* Gets the value of the settlementAmount property.
*
* @return
* possible object is
* {@link Money }
*
*/
public Money getSettlementAmount() {
return settlementAmount;
}
/**
* Sets the value of the settlementAmount property.
*
* @param value
* allowed object is
* {@link Money }
*
*/
public void setSettlementAmount(Money value) {
this.settlementAmount = value;
}
/**
* Gets the value of the settlementCurrency property.
*
* @return
* possible object is
* {@link Currency }
*
*/
public Currency getSettlementCurrency() {
return settlementCurrency;
}
/**
* Sets the value of the settlementCurrency property.
*
* @param value
* allowed object is
* {@link Currency }
*
*/
public void setSettlementCurrency(Currency value) {
this.settlementCurrency = value;
}
/**
* Gets the value of the fxFeature property.
*
* @return
* possible object is
* {@link FxFeature }
*
*/
public FxFeature getFxFeature() {
return fxFeature;
}
/**
* Sets the value of the fxFeature property.
*
* @param value
* allowed object is
* {@link FxFeature }
*
*/
public void setFxFeature(FxFeature value) {
this.fxFeature = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy