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

net.finmath.smartcontract.product.xml.CashSettlement Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
//
// 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * A type to define the cash settlement terms for a product where cash
 *                 settlement is applicable.
 *             
 * 
 * 

Java class for CashSettlement complex type. * *

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

 * <complexType name="CashSettlement">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="cashSettlementValuationTime" type="{http://www.fpml.org/FpML-5/confirmation}BusinessCenterTime" minOccurs="0"/>
 *         <element name="cashSettlementValuationDate" type="{http://www.fpml.org/FpML-5/confirmation}RelativeDateOffset" minOccurs="0"/>
 *         <element name="cashSettlementPaymentDate" type="{http://www.fpml.org/FpML-5/confirmation}CashSettlementPaymentDate" minOccurs="0"/>
 *         <choice minOccurs="0">
 *           <element name="cashPriceMethod" type="{http://www.fpml.org/FpML-5/confirmation}CashPriceMethod"/>
 *           <element name="cashPriceAlternateMethod" type="{http://www.fpml.org/FpML-5/confirmation}CashPriceMethod"/>
 *           <element name="parYieldCurveAdjustedMethod" type="{http://www.fpml.org/FpML-5/confirmation}YieldCurveMethod"/>
 *           <element name="zeroCouponYieldAdjustedMethod" type="{http://www.fpml.org/FpML-5/confirmation}YieldCurveMethod"/>
 *           <element name="parYieldCurveUnadjustedMethod" type="{http://www.fpml.org/FpML-5/confirmation}YieldCurveMethod"/>
 *           <element name="crossCurrencyMethod" type="{http://www.fpml.org/FpML-5/confirmation}CrossCurrencyMethod"/>
 *           <element name="collateralizedCashPriceMethod" type="{http://www.fpml.org/FpML-5/confirmation}YieldCurveMethod"/>
 *         </choice>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CashSettlement", propOrder = { "cashSettlementValuationTime", "cashSettlementValuationDate", "cashSettlementPaymentDate", "cashPriceMethod", "cashPriceAlternateMethod", "parYieldCurveAdjustedMethod", "zeroCouponYieldAdjustedMethod", "parYieldCurveUnadjustedMethod", "crossCurrencyMethod", "collateralizedCashPriceMethod" }) public class CashSettlement { protected BusinessCenterTime cashSettlementValuationTime; protected RelativeDateOffset cashSettlementValuationDate; protected CashSettlementPaymentDate cashSettlementPaymentDate; protected CashPriceMethod cashPriceMethod; protected CashPriceMethod cashPriceAlternateMethod; protected YieldCurveMethod parYieldCurveAdjustedMethod; protected YieldCurveMethod zeroCouponYieldAdjustedMethod; protected YieldCurveMethod parYieldCurveUnadjustedMethod; protected CrossCurrencyMethod crossCurrencyMethod; protected YieldCurveMethod collateralizedCashPriceMethod; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the cashSettlementValuationTime property. * * @return * possible object is * {@link BusinessCenterTime } * */ public BusinessCenterTime getCashSettlementValuationTime() { return cashSettlementValuationTime; } /** * Sets the value of the cashSettlementValuationTime property. * * @param value * allowed object is * {@link BusinessCenterTime } * */ public void setCashSettlementValuationTime(BusinessCenterTime value) { this.cashSettlementValuationTime = value; } /** * Gets the value of the cashSettlementValuationDate property. * * @return * possible object is * {@link RelativeDateOffset } * */ public RelativeDateOffset getCashSettlementValuationDate() { return cashSettlementValuationDate; } /** * Sets the value of the cashSettlementValuationDate property. * * @param value * allowed object is * {@link RelativeDateOffset } * */ public void setCashSettlementValuationDate(RelativeDateOffset value) { this.cashSettlementValuationDate = value; } /** * Gets the value of the cashSettlementPaymentDate property. * * @return * possible object is * {@link CashSettlementPaymentDate } * */ public CashSettlementPaymentDate getCashSettlementPaymentDate() { return cashSettlementPaymentDate; } /** * Sets the value of the cashSettlementPaymentDate property. * * @param value * allowed object is * {@link CashSettlementPaymentDate } * */ public void setCashSettlementPaymentDate(CashSettlementPaymentDate value) { this.cashSettlementPaymentDate = value; } /** * Gets the value of the cashPriceMethod property. * * @return * possible object is * {@link CashPriceMethod } * */ public CashPriceMethod getCashPriceMethod() { return cashPriceMethod; } /** * Sets the value of the cashPriceMethod property. * * @param value * allowed object is * {@link CashPriceMethod } * */ public void setCashPriceMethod(CashPriceMethod value) { this.cashPriceMethod = value; } /** * Gets the value of the cashPriceAlternateMethod property. * * @return * possible object is * {@link CashPriceMethod } * */ public CashPriceMethod getCashPriceAlternateMethod() { return cashPriceAlternateMethod; } /** * Sets the value of the cashPriceAlternateMethod property. * * @param value * allowed object is * {@link CashPriceMethod } * */ public void setCashPriceAlternateMethod(CashPriceMethod value) { this.cashPriceAlternateMethod = value; } /** * Gets the value of the parYieldCurveAdjustedMethod property. * * @return * possible object is * {@link YieldCurveMethod } * */ public YieldCurveMethod getParYieldCurveAdjustedMethod() { return parYieldCurveAdjustedMethod; } /** * Sets the value of the parYieldCurveAdjustedMethod property. * * @param value * allowed object is * {@link YieldCurveMethod } * */ public void setParYieldCurveAdjustedMethod(YieldCurveMethod value) { this.parYieldCurveAdjustedMethod = value; } /** * Gets the value of the zeroCouponYieldAdjustedMethod property. * * @return * possible object is * {@link YieldCurveMethod } * */ public YieldCurveMethod getZeroCouponYieldAdjustedMethod() { return zeroCouponYieldAdjustedMethod; } /** * Sets the value of the zeroCouponYieldAdjustedMethod property. * * @param value * allowed object is * {@link YieldCurveMethod } * */ public void setZeroCouponYieldAdjustedMethod(YieldCurveMethod value) { this.zeroCouponYieldAdjustedMethod = value; } /** * Gets the value of the parYieldCurveUnadjustedMethod property. * * @return * possible object is * {@link YieldCurveMethod } * */ public YieldCurveMethod getParYieldCurveUnadjustedMethod() { return parYieldCurveUnadjustedMethod; } /** * Sets the value of the parYieldCurveUnadjustedMethod property. * * @param value * allowed object is * {@link YieldCurveMethod } * */ public void setParYieldCurveUnadjustedMethod(YieldCurveMethod value) { this.parYieldCurveUnadjustedMethod = value; } /** * Gets the value of the crossCurrencyMethod property. * * @return * possible object is * {@link CrossCurrencyMethod } * */ public CrossCurrencyMethod getCrossCurrencyMethod() { return crossCurrencyMethod; } /** * Sets the value of the crossCurrencyMethod property. * * @param value * allowed object is * {@link CrossCurrencyMethod } * */ public void setCrossCurrencyMethod(CrossCurrencyMethod value) { this.crossCurrencyMethod = value; } /** * Gets the value of the collateralizedCashPriceMethod property. * * @return * possible object is * {@link YieldCurveMethod } * */ public YieldCurveMethod getCollateralizedCashPriceMethod() { return collateralizedCashPriceMethod; } /** * Sets the value of the collateralizedCashPriceMethod property. * * @param value * allowed object is * {@link YieldCurveMethod } * */ public void setCollateralizedCashPriceMethod(YieldCurveMethod value) { this.collateralizedCashPriceMethod = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy