net.finmath.smartcontract.product.xml.OptionFeature 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* A type for defining option features.
*
* Java class for OptionFeature complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OptionFeature">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}OptionBaseFeature.model"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}OptionFeature.model"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OptionFeature", propOrder = {
"fxFeature",
"strategyFeature",
"asian",
"barrier",
"knock",
"passThrough"
})
public class OptionFeature {
protected FxFeature fxFeature;
protected StrategyFeature strategyFeature;
protected Asian asian;
protected Barrier barrier;
protected Knock knock;
protected PassThrough passThrough;
/**
* Gets the value of the fxFeature property.
*
* @return
* possible object is
* {@link FxFeature }
*
*/
public FxFeature getFxFeature() {
return fxFeature;
}
/**
* Sets the value of the fxFeature property.
*
* @param value
* allowed object is
* {@link FxFeature }
*
*/
public void setFxFeature(FxFeature value) {
this.fxFeature = value;
}
/**
* Gets the value of the strategyFeature property.
*
* @return
* possible object is
* {@link StrategyFeature }
*
*/
public StrategyFeature getStrategyFeature() {
return strategyFeature;
}
/**
* Sets the value of the strategyFeature property.
*
* @param value
* allowed object is
* {@link StrategyFeature }
*
*/
public void setStrategyFeature(StrategyFeature value) {
this.strategyFeature = value;
}
/**
* Gets the value of the asian property.
*
* @return
* possible object is
* {@link Asian }
*
*/
public Asian getAsian() {
return asian;
}
/**
* Sets the value of the asian property.
*
* @param value
* allowed object is
* {@link Asian }
*
*/
public void setAsian(Asian value) {
this.asian = value;
}
/**
* Gets the value of the barrier property.
*
* @return
* possible object is
* {@link Barrier }
*
*/
public Barrier getBarrier() {
return barrier;
}
/**
* Sets the value of the barrier property.
*
* @param value
* allowed object is
* {@link Barrier }
*
*/
public void setBarrier(Barrier value) {
this.barrier = value;
}
/**
* Gets the value of the knock property.
*
* @return
* possible object is
* {@link Knock }
*
*/
public Knock getKnock() {
return knock;
}
/**
* Sets the value of the knock property.
*
* @param value
* allowed object is
* {@link Knock }
*
*/
public void setKnock(Knock value) {
this.knock = value;
}
/**
* Gets the value of the passThrough property.
*
* @return
* possible object is
* {@link PassThrough }
*
*/
public PassThrough getPassThrough() {
return passThrough;
}
/**
* Sets the value of the passThrough property.
*
* @param value
* allowed object is
* {@link PassThrough }
*
*/
public void setPassThrough(PassThrough value) {
this.passThrough = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy