net.finmath.smartcontract.product.xml.EquityOptionTransactionSupplement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* A type for defining equity option transaction supplements.
*
*
* Java class for EquityOptionTransactionSupplement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EquityOptionTransactionSupplement">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}EquityDerivativeShortFormBase">
* <sequence>
* <element name="exchangeLookAlike" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="exchangeTradedContractNearest" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}IndexAnnexFallback.model" minOccurs="0"/>
* <element name="methodOfAdjustment" type="{http://www.fpml.org/FpML-5/confirmation}MethodOfAdjustmentEnum" minOccurs="0"/>
* <element name="localJurisdiction" type="{http://www.fpml.org/FpML-5/confirmation}CountryCode" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="optionEntitlement" type="{http://www.fpml.org/FpML-5/confirmation}PositiveDecimal"/>
* <element name="multiplier" type="{http://www.fpml.org/FpML-5/confirmation}PositiveDecimal"/>
* </choice>
* <element name="extraordinaryEvents" type="{http://www.fpml.org/FpML-5/confirmation}ExtraordinaryEvents" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EquityOptionTransactionSupplement", propOrder = {
"exchangeLookAlike",
"exchangeTradedContractNearest",
"multipleExchangeIndexAnnexFallback",
"componentSecurityIndexAnnexFallback",
"methodOfAdjustment",
"localJurisdiction",
"optionEntitlement",
"multiplier",
"extraordinaryEvents"
})
public class EquityOptionTransactionSupplement
extends EquityDerivativeShortFormBase
{
protected Boolean exchangeLookAlike;
protected Boolean exchangeTradedContractNearest;
protected Boolean multipleExchangeIndexAnnexFallback;
protected Boolean componentSecurityIndexAnnexFallback;
@XmlSchemaType(name = "token")
protected MethodOfAdjustmentEnum methodOfAdjustment;
protected CountryCode localJurisdiction;
protected BigDecimal optionEntitlement;
protected BigDecimal multiplier;
protected ExtraordinaryEvents extraordinaryEvents;
/**
* Gets the value of the exchangeLookAlike property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExchangeLookAlike() {
return exchangeLookAlike;
}
/**
* Sets the value of the exchangeLookAlike property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExchangeLookAlike(Boolean value) {
this.exchangeLookAlike = value;
}
/**
* Gets the value of the exchangeTradedContractNearest property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExchangeTradedContractNearest() {
return exchangeTradedContractNearest;
}
/**
* Sets the value of the exchangeTradedContractNearest property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExchangeTradedContractNearest(Boolean value) {
this.exchangeTradedContractNearest = value;
}
/**
* Gets the value of the multipleExchangeIndexAnnexFallback property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMultipleExchangeIndexAnnexFallback() {
return multipleExchangeIndexAnnexFallback;
}
/**
* Sets the value of the multipleExchangeIndexAnnexFallback property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMultipleExchangeIndexAnnexFallback(Boolean value) {
this.multipleExchangeIndexAnnexFallback = value;
}
/**
* Gets the value of the componentSecurityIndexAnnexFallback property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isComponentSecurityIndexAnnexFallback() {
return componentSecurityIndexAnnexFallback;
}
/**
* Sets the value of the componentSecurityIndexAnnexFallback property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setComponentSecurityIndexAnnexFallback(Boolean value) {
this.componentSecurityIndexAnnexFallback = value;
}
/**
* Gets the value of the methodOfAdjustment property.
*
* @return
* possible object is
* {@link MethodOfAdjustmentEnum }
*
*/
public MethodOfAdjustmentEnum getMethodOfAdjustment() {
return methodOfAdjustment;
}
/**
* Sets the value of the methodOfAdjustment property.
*
* @param value
* allowed object is
* {@link MethodOfAdjustmentEnum }
*
*/
public void setMethodOfAdjustment(MethodOfAdjustmentEnum value) {
this.methodOfAdjustment = value;
}
/**
* Gets the value of the localJurisdiction property.
*
* @return
* possible object is
* {@link CountryCode }
*
*/
public CountryCode getLocalJurisdiction() {
return localJurisdiction;
}
/**
* Sets the value of the localJurisdiction property.
*
* @param value
* allowed object is
* {@link CountryCode }
*
*/
public void setLocalJurisdiction(CountryCode value) {
this.localJurisdiction = value;
}
/**
* Gets the value of the optionEntitlement property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getOptionEntitlement() {
return optionEntitlement;
}
/**
* Sets the value of the optionEntitlement property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setOptionEntitlement(BigDecimal value) {
this.optionEntitlement = value;
}
/**
* Gets the value of the multiplier property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMultiplier() {
return multiplier;
}
/**
* Sets the value of the multiplier property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMultiplier(BigDecimal value) {
this.multiplier = value;
}
/**
* Gets the value of the extraordinaryEvents property.
*
* @return
* possible object is
* {@link ExtraordinaryEvents }
*
*/
public ExtraordinaryEvents getExtraordinaryEvents() {
return extraordinaryEvents;
}
/**
* Sets the value of the extraordinaryEvents property.
*
* @param value
* allowed object is
* {@link ExtraordinaryEvents }
*
*/
public void setExtraordinaryEvents(ExtraordinaryEvents value) {
this.extraordinaryEvents = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy