net.finmath.smartcontract.product.xml.NonDeliverableSettlement 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 type defining the parameters used when the reference currency of the
* swapStream is non-deliverable.
*
*
* Java class for NonDeliverableSettlement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NonDeliverableSettlement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="referenceCurrency" type="{http://www.fpml.org/FpML-5/confirmation}Currency"/>
* <choice>
* <element name="fxFixingDate" type="{http://www.fpml.org/FpML-5/confirmation}FxFixingDate"/>
* <element name="fxFixingSchedule" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableDates"/>
* </choice>
* <element name="settlementRateOption" type="{http://www.fpml.org/FpML-5/confirmation}SettlementRateOption"/>
* <element name="priceSourceDisruption" type="{http://www.fpml.org/FpML-5/confirmation}PriceSourceDisruption" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NonDeliverableSettlement", propOrder = {
"referenceCurrency",
"fxFixingDate",
"fxFixingSchedule",
"settlementRateOption",
"priceSourceDisruption"
})
public class NonDeliverableSettlement {
@XmlElement(required = true)
protected Currency referenceCurrency;
protected FxFixingDate fxFixingDate;
protected AdjustableDates fxFixingSchedule;
@XmlElement(required = true)
protected SettlementRateOption settlementRateOption;
protected PriceSourceDisruption priceSourceDisruption;
/**
* Gets the value of the referenceCurrency property.
*
* @return
* possible object is
* {@link Currency }
*
*/
public Currency getReferenceCurrency() {
return referenceCurrency;
}
/**
* Sets the value of the referenceCurrency property.
*
* @param value
* allowed object is
* {@link Currency }
*
*/
public void setReferenceCurrency(Currency value) {
this.referenceCurrency = value;
}
/**
* Gets the value of the fxFixingDate property.
*
* @return
* possible object is
* {@link FxFixingDate }
*
*/
public FxFixingDate getFxFixingDate() {
return fxFixingDate;
}
/**
* Sets the value of the fxFixingDate property.
*
* @param value
* allowed object is
* {@link FxFixingDate }
*
*/
public void setFxFixingDate(FxFixingDate value) {
this.fxFixingDate = value;
}
/**
* Gets the value of the fxFixingSchedule property.
*
* @return
* possible object is
* {@link AdjustableDates }
*
*/
public AdjustableDates getFxFixingSchedule() {
return fxFixingSchedule;
}
/**
* Sets the value of the fxFixingSchedule property.
*
* @param value
* allowed object is
* {@link AdjustableDates }
*
*/
public void setFxFixingSchedule(AdjustableDates value) {
this.fxFixingSchedule = value;
}
/**
* Gets the value of the settlementRateOption property.
*
* @return
* possible object is
* {@link SettlementRateOption }
*
*/
public SettlementRateOption getSettlementRateOption() {
return settlementRateOption;
}
/**
* Sets the value of the settlementRateOption property.
*
* @param value
* allowed object is
* {@link SettlementRateOption }
*
*/
public void setSettlementRateOption(SettlementRateOption value) {
this.settlementRateOption = value;
}
/**
* Gets the value of the priceSourceDisruption property.
*
* @return
* possible object is
* {@link PriceSourceDisruption }
*
*/
public PriceSourceDisruption getPriceSourceDisruption() {
return priceSourceDisruption;
}
/**
* Sets the value of the priceSourceDisruption property.
*
* @param value
* allowed object is
* {@link PriceSourceDisruption }
*
*/
public void setPriceSourceDisruption(PriceSourceDisruption value) {
this.priceSourceDisruption = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy