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

net.finmath.smartcontract.product.xml.FxCashSettlementSimple 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 java.util.ArrayList;
import java.util.List;
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 that is used for describing cash settlement of a variance or
 *                 volatility swap option. It includes the settlement currency together with the spot currency exchange
 *                 required to calculate the settlement currency amount.
 *             
 * 
 * 

Java class for FxCashSettlementSimple complex type. * *

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

 * <complexType name="FxCashSettlementSimple">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="settlementCurrency" type="{http://www.fpml.org/FpML-5/confirmation}Currency"/>
 *         <element name="referenceCurrency" type="{http://www.fpml.org/FpML-5/confirmation}Currency" minOccurs="0"/>
 *         <choice minOccurs="0">
 *           <element name="fixing" type="{http://www.fpml.org/FpML-5/confirmation}FxFixing" maxOccurs="unbounded"/>
 *           <element name="rateSourceFixing" type="{http://www.fpml.org/FpML-5/confirmation}FxRateSourceFixing" maxOccurs="unbounded"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FxCashSettlementSimple", propOrder = { "settlementCurrency", "referenceCurrency", "fixing", "rateSourceFixing" }) public class FxCashSettlementSimple { @XmlElement(required = true) protected Currency settlementCurrency; protected Currency referenceCurrency; protected List fixing; protected List rateSourceFixing; /** * 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 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 fixing property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the fixing property. * *

* For example, to add a new item, do as follows: *

     *    getFixing().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FxFixing } * * */ public List getFixing() { if (fixing == null) { fixing = new ArrayList(); } return this.fixing; } /** * Gets the value of the rateSourceFixing property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the rateSourceFixing property. * *

* For example, to add a new item, do as follows: *

     *    getRateSourceFixing().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FxRateSourceFixing } * * */ public List getRateSourceFixing() { if (rateSourceFixing == null) { rateSourceFixing = new ArrayList(); } return this.rateSourceFixing; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy