net.finmath.smartcontract.product.xml.FxAccrualRegionUpperBound 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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for FxAccrualRegionUpperBound complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FxAccrualRegionUpperBound">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="condition" type="{http://www.fpml.org/FpML-5/confirmation}FxRegionUpperBoundDirectionEnum"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}FxAccrualConditionLevel.model"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FxAccrualRegionUpperBound", propOrder = {
"condition",
"level",
"quoteBasis",
"strikeReference",
"averageStrikeReference",
"triggerReference"
})
public class FxAccrualRegionUpperBound {
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected FxRegionUpperBoundDirectionEnum condition;
protected FxLevel level;
@XmlSchemaType(name = "token")
protected QuoteBasisEnum quoteBasis;
protected FxAccrualStrikeReference strikeReference;
protected FxAccrualAverageStrikeReference averageStrikeReference;
protected FxAccrualTriggerReference triggerReference;
/**
* Gets the value of the condition property.
*
* @return
* possible object is
* {@link FxRegionUpperBoundDirectionEnum }
*
*/
public FxRegionUpperBoundDirectionEnum getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
* @param value
* allowed object is
* {@link FxRegionUpperBoundDirectionEnum }
*
*/
public void setCondition(FxRegionUpperBoundDirectionEnum value) {
this.condition = value;
}
/**
* Gets the value of the level property.
*
* @return
* possible object is
* {@link FxLevel }
*
*/
public FxLevel getLevel() {
return level;
}
/**
* Sets the value of the level property.
*
* @param value
* allowed object is
* {@link FxLevel }
*
*/
public void setLevel(FxLevel value) {
this.level = value;
}
/**
* Gets the value of the quoteBasis property.
*
* @return
* possible object is
* {@link QuoteBasisEnum }
*
*/
public QuoteBasisEnum getQuoteBasis() {
return quoteBasis;
}
/**
* Sets the value of the quoteBasis property.
*
* @param value
* allowed object is
* {@link QuoteBasisEnum }
*
*/
public void setQuoteBasis(QuoteBasisEnum value) {
this.quoteBasis = value;
}
/**
* Gets the value of the strikeReference property.
*
* @return
* possible object is
* {@link FxAccrualStrikeReference }
*
*/
public FxAccrualStrikeReference getStrikeReference() {
return strikeReference;
}
/**
* Sets the value of the strikeReference property.
*
* @param value
* allowed object is
* {@link FxAccrualStrikeReference }
*
*/
public void setStrikeReference(FxAccrualStrikeReference value) {
this.strikeReference = value;
}
/**
* Gets the value of the averageStrikeReference property.
*
* @return
* possible object is
* {@link FxAccrualAverageStrikeReference }
*
*/
public FxAccrualAverageStrikeReference getAverageStrikeReference() {
return averageStrikeReference;
}
/**
* Sets the value of the averageStrikeReference property.
*
* @param value
* allowed object is
* {@link FxAccrualAverageStrikeReference }
*
*/
public void setAverageStrikeReference(FxAccrualAverageStrikeReference value) {
this.averageStrikeReference = value;
}
/**
* Gets the value of the triggerReference property.
*
* @return
* possible object is
* {@link FxAccrualTriggerReference }
*
*/
public FxAccrualTriggerReference getTriggerReference() {
return triggerReference;
}
/**
* Sets the value of the triggerReference property.
*
* @param value
* allowed object is
* {@link FxAccrualTriggerReference }
*
*/
public void setTriggerReference(FxAccrualTriggerReference value) {
this.triggerReference = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy