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

net.finmath.smartcontract.product.xml.FxTargetPhysicalSettlement 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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for FxTargetPhysicalSettlement complex type. * *

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

 * <complexType name="FxTargetPhysicalSettlement">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}FxExchangedCurrency.model"/>
 *         <element name="settlementAdjustmentStyle" type="{http://www.fpml.org/FpML-5/confirmation}FxSettlementAdjustmentMethodEnum"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}StrikeOrStrikeReference.model" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FxTargetPhysicalSettlement", propOrder = { "exchangedCurrency1", "exchangedCurrency2", "settlementAdjustmentStyle", "strike", "strikeReference" }) public class FxTargetPhysicalSettlement { @XmlElement(required = true) protected FxExchangedCurrency exchangedCurrency1; @XmlElement(required = true) protected FxExchangedCurrency exchangedCurrency2; @XmlElement(required = true) @XmlSchemaType(name = "token") protected FxSettlementAdjustmentMethodEnum settlementAdjustmentStyle; protected FxStrike strike; protected FxStrikeReference strikeReference; /** * Gets the value of the exchangedCurrency1 property. * * @return * possible object is * {@link FxExchangedCurrency } * */ public FxExchangedCurrency getExchangedCurrency1() { return exchangedCurrency1; } /** * Sets the value of the exchangedCurrency1 property. * * @param value * allowed object is * {@link FxExchangedCurrency } * */ public void setExchangedCurrency1(FxExchangedCurrency value) { this.exchangedCurrency1 = value; } /** * Gets the value of the exchangedCurrency2 property. * * @return * possible object is * {@link FxExchangedCurrency } * */ public FxExchangedCurrency getExchangedCurrency2() { return exchangedCurrency2; } /** * Sets the value of the exchangedCurrency2 property. * * @param value * allowed object is * {@link FxExchangedCurrency } * */ public void setExchangedCurrency2(FxExchangedCurrency value) { this.exchangedCurrency2 = value; } /** * Gets the value of the settlementAdjustmentStyle property. * * @return * possible object is * {@link FxSettlementAdjustmentMethodEnum } * */ public FxSettlementAdjustmentMethodEnum getSettlementAdjustmentStyle() { return settlementAdjustmentStyle; } /** * Sets the value of the settlementAdjustmentStyle property. * * @param value * allowed object is * {@link FxSettlementAdjustmentMethodEnum } * */ public void setSettlementAdjustmentStyle(FxSettlementAdjustmentMethodEnum value) { this.settlementAdjustmentStyle = value; } /** * Gets the value of the strike property. * * @return * possible object is * {@link FxStrike } * */ public FxStrike getStrike() { return strike; } /** * Sets the value of the strike property. * * @param value * allowed object is * {@link FxStrike } * */ public void setStrike(FxStrike value) { this.strike = value; } /** * Gets the value of the strikeReference property. * * @return * possible object is * {@link FxStrikeReference } * */ public FxStrikeReference getStrikeReference() { return strikeReference; } /** * Sets the value of the strikeReference property. * * @param value * allowed object is * {@link FxStrikeReference } * */ public void setStrikeReference(FxStrikeReference value) { this.strikeReference = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy