org.fpml.fpml_5.confirmation.InterestShortFall 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for InterestShortFall complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InterestShortFall">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="interestShortfallCap" type="{http://www.fpml.org/FpML-5/confirmation}InterestShortfallCapEnum"/>
* <element name="compounding" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="rateSource" type="{http://www.fpml.org/FpML-5/confirmation}FloatingRateIndex" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InterestShortFall", propOrder = {
"interestShortfallCap",
"compounding",
"rateSource"
})
public class InterestShortFall {
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected InterestShortfallCapEnum interestShortfallCap;
protected boolean compounding;
protected FloatingRateIndex rateSource;
/**
* Gets the value of the interestShortfallCap property.
*
* @return
* possible object is
* {@link InterestShortfallCapEnum }
*
*/
public InterestShortfallCapEnum getInterestShortfallCap() {
return interestShortfallCap;
}
/**
* Sets the value of the interestShortfallCap property.
*
* @param value
* allowed object is
* {@link InterestShortfallCapEnum }
*
*/
public void setInterestShortfallCap(InterestShortfallCapEnum value) {
this.interestShortfallCap = value;
}
/**
* Gets the value of the compounding property.
*
*/
public boolean isCompounding() {
return compounding;
}
/**
* Sets the value of the compounding property.
*
*/
public void setCompounding(boolean value) {
this.compounding = value;
}
/**
* Gets the value of the rateSource property.
*
* @return
* possible object is
* {@link FloatingRateIndex }
*
*/
public FloatingRateIndex getRateSource() {
return rateSource;
}
/**
* Sets the value of the rateSource property.
*
* @param value
* allowed object is
* {@link FloatingRateIndex }
*
*/
public void setRateSource(FloatingRateIndex value) {
this.rateSource = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy