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

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


/**
 * 

Java class for TouchRateObservation complex type. * *

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

 * <complexType name="TouchRateObservation">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}TriggerRateObservation">
 *       <choice>
 *         <sequence>
 *           <element name="exerciseSide" type="{http://www.fpml.org/FpML-5/confirmation}ExerciseSideEnum" minOccurs="0"/>
 *           <choice>
 *             <element name="settlementType" type="{http://www.fpml.org/FpML-5/confirmation}SettlementTypeEnum"/>
 *             <element name="cashSettlement" type="{http://www.fpml.org/FpML-5/confirmation}SimplePayment"/>
 *             <element name="physicalSettlement" type="{http://www.fpml.org/FpML-5/confirmation}PhysicalSettlement"/>
 *           </choice>
 *           <element name="payment" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativePayment" minOccurs="0"/>
 *           <element name="clearingInstructions" type="{http://www.fpml.org/FpML-5/confirmation}ClearingInstructions" minOccurs="0"/>
 *         </sequence>
 *         <element name="isExercisable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </choice>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TouchRateObservation", propOrder = { "exerciseSide", "settlementType", "cashSettlement", "physicalSettlement", "payment", "clearingInstructions", "isExercisable" }) public class TouchRateObservation extends TriggerRateObservation { protected String exerciseSide; @XmlSchemaType(name = "token") protected SettlementTypeEnum settlementType; protected SimplePayment cashSettlement; protected PhysicalSettlement physicalSettlement; protected NonNegativePayment payment; protected ClearingInstructions clearingInstructions; protected Boolean isExercisable; /** * Gets the value of the exerciseSide property. * * @return * possible object is * {@link String } * */ public String getExerciseSide() { return exerciseSide; } /** * Sets the value of the exerciseSide property. * * @param value * allowed object is * {@link String } * */ public void setExerciseSide(String value) { this.exerciseSide = value; } /** * Gets the value of the settlementType property. * * @return * possible object is * {@link SettlementTypeEnum } * */ public SettlementTypeEnum getSettlementType() { return settlementType; } /** * Sets the value of the settlementType property. * * @param value * allowed object is * {@link SettlementTypeEnum } * */ public void setSettlementType(SettlementTypeEnum value) { this.settlementType = value; } /** * Gets the value of the cashSettlement property. * * @return * possible object is * {@link SimplePayment } * */ public SimplePayment getCashSettlement() { return cashSettlement; } /** * Sets the value of the cashSettlement property. * * @param value * allowed object is * {@link SimplePayment } * */ public void setCashSettlement(SimplePayment value) { this.cashSettlement = value; } /** * Gets the value of the physicalSettlement property. * * @return * possible object is * {@link PhysicalSettlement } * */ public PhysicalSettlement getPhysicalSettlement() { return physicalSettlement; } /** * Sets the value of the physicalSettlement property. * * @param value * allowed object is * {@link PhysicalSettlement } * */ public void setPhysicalSettlement(PhysicalSettlement value) { this.physicalSettlement = value; } /** * Gets the value of the payment property. * * @return * possible object is * {@link NonNegativePayment } * */ public NonNegativePayment getPayment() { return payment; } /** * Sets the value of the payment property. * * @param value * allowed object is * {@link NonNegativePayment } * */ public void setPayment(NonNegativePayment value) { this.payment = value; } /** * Gets the value of the clearingInstructions property. * * @return * possible object is * {@link ClearingInstructions } * */ public ClearingInstructions getClearingInstructions() { return clearingInstructions; } /** * Sets the value of the clearingInstructions property. * * @param value * allowed object is * {@link ClearingInstructions } * */ public void setClearingInstructions(ClearingInstructions value) { this.clearingInstructions = value; } /** * Gets the value of the isExercisable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsExercisable() { return isExercisable; } /** * Sets the value of the isExercisable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsExercisable(Boolean value) { this.isExercisable = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy