org.fpml.fpml_5.confirmation.ExchangeTradedContract Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* An exchange traded derivative contract.
*
* Java class for ExchangeTradedContract complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExchangeTradedContract">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}ExchangeTraded">
* <sequence>
* <element name="multiplier" type="{http://www.fpml.org/FpML-5/confirmation}PositiveDecimal" minOccurs="0"/>
* <element name="contractReference" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* <element name="expirationDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExchangeTradedContract", propOrder = {
"multiplier",
"contractReference",
"expirationDate"
})
@XmlSeeAlso({
ExchangeTradedOption.class
})
public class ExchangeTradedContract
extends ExchangeTraded
{
protected BigDecimal multiplier;
protected String contractReference;
protected AdjustableOrRelativeDate expirationDate;
/**
* 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 contractReference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContractReference() {
return contractReference;
}
/**
* Sets the value of the contractReference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContractReference(String value) {
this.contractReference = value;
}
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link AdjustableOrRelativeDate }
*
*/
public AdjustableOrRelativeDate getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link AdjustableOrRelativeDate }
*
*/
public void setExpirationDate(AdjustableOrRelativeDate value) {
this.expirationDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy