net.finmath.smartcontract.product.xml.Composite Maven / Gradle / Ivy
//
// 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.XmlType;
/**
* Specifies the conditions to be applied for converting into a reference
* currency when the actual currency rate is not determined upfront.
*
*
* Java class for Composite complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Composite">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="determinationMethod" type="{http://www.fpml.org/FpML-5/confirmation}DeterminationMethod" minOccurs="0"/>
* <element name="relativeDate" type="{http://www.fpml.org/FpML-5/confirmation}RelativeDateOffset" minOccurs="0"/>
* <element name="fxSpotRateSource" type="{http://www.fpml.org/FpML-5/confirmation}FxSpotRateSource" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Composite", propOrder = {
"determinationMethod",
"relativeDate",
"fxSpotRateSource"
})
public class Composite {
protected DeterminationMethod determinationMethod;
protected RelativeDateOffset relativeDate;
protected FxSpotRateSource fxSpotRateSource;
/**
* Gets the value of the determinationMethod property.
*
* @return
* possible object is
* {@link DeterminationMethod }
*
*/
public DeterminationMethod getDeterminationMethod() {
return determinationMethod;
}
/**
* Sets the value of the determinationMethod property.
*
* @param value
* allowed object is
* {@link DeterminationMethod }
*
*/
public void setDeterminationMethod(DeterminationMethod value) {
this.determinationMethod = value;
}
/**
* Gets the value of the relativeDate property.
*
* @return
* possible object is
* {@link RelativeDateOffset }
*
*/
public RelativeDateOffset getRelativeDate() {
return relativeDate;
}
/**
* Sets the value of the relativeDate property.
*
* @param value
* allowed object is
* {@link RelativeDateOffset }
*
*/
public void setRelativeDate(RelativeDateOffset value) {
this.relativeDate = value;
}
/**
* Gets the value of the fxSpotRateSource property.
*
* @return
* possible object is
* {@link FxSpotRateSource }
*
*/
public FxSpotRateSource getFxSpotRateSource() {
return fxSpotRateSource;
}
/**
* Sets the value of the fxSpotRateSource property.
*
* @param value
* allowed object is
* {@link FxSpotRateSource }
*
*/
public void setFxSpotRateSource(FxSpotRateSource value) {
this.fxSpotRateSource = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy