
org.fpml.fpml_5.confirmation.Future 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.04.04 at 04:56:21 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* An exchange traded future contract.
*
* Java class for Future complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Future">
* <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="futureContractReference" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="maturity" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="contractYearMonth" type="{http://www.w3.org/2001/XMLSchema}gYearMonth"/>
* </choice>
* <sequence>
* <element name="underlyer" type="{http://www.fpml.org/FpML-5/confirmation}ExchangeTradedContractUnderlyer" minOccurs="0"/>
* <element name="settlementType" type="{http://www.fpml.org/FpML-5/confirmation}SettlementTypeEnum" minOccurs="0"/>
* </sequence>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Future", propOrder = {
"multiplier",
"futureContractReference",
"maturity",
"contractYearMonth",
"underlyer",
"settlementType"
})
public class Future
extends ExchangeTraded
{
protected BigDecimal multiplier;
protected String futureContractReference;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar maturity;
@XmlSchemaType(name = "gYearMonth")
protected XMLGregorianCalendar contractYearMonth;
protected ExchangeTradedContractUnderlyer underlyer;
@XmlSchemaType(name = "token")
protected SettlementTypeEnum settlementType;
/**
* 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 futureContractReference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFutureContractReference() {
return futureContractReference;
}
/**
* Sets the value of the futureContractReference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFutureContractReference(String value) {
this.futureContractReference = value;
}
/**
* Gets the value of the maturity property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMaturity() {
return maturity;
}
/**
* Sets the value of the maturity property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMaturity(XMLGregorianCalendar value) {
this.maturity = value;
}
/**
* Gets the value of the contractYearMonth property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getContractYearMonth() {
return contractYearMonth;
}
/**
* Sets the value of the contractYearMonth property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setContractYearMonth(XMLGregorianCalendar value) {
this.contractYearMonth = value;
}
/**
* Gets the value of the underlyer property.
*
* @return
* possible object is
* {@link ExchangeTradedContractUnderlyer }
*
*/
public ExchangeTradedContractUnderlyer getUnderlyer() {
return underlyer;
}
/**
* Sets the value of the underlyer property.
*
* @param value
* allowed object is
* {@link ExchangeTradedContractUnderlyer }
*
*/
public void setUnderlyer(ExchangeTradedContractUnderlyer value) {
this.underlyer = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy