org.fpml.fpml_5.confirmation.Tranche 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* This type represents a CDS Tranche.
*
* Java class for Tranche complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Tranche">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="attachmentPoint" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="exhaustionPoint" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="incurredRecoveryApplicable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Tranche", propOrder = {
"attachmentPoint",
"exhaustionPoint",
"incurredRecoveryApplicable"
})
public class Tranche {
@XmlElement(required = true)
protected BigDecimal attachmentPoint;
@XmlElement(required = true)
protected BigDecimal exhaustionPoint;
protected Boolean incurredRecoveryApplicable;
/**
* Gets the value of the attachmentPoint property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAttachmentPoint() {
return attachmentPoint;
}
/**
* Sets the value of the attachmentPoint property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAttachmentPoint(BigDecimal value) {
this.attachmentPoint = value;
}
/**
* Gets the value of the exhaustionPoint property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getExhaustionPoint() {
return exhaustionPoint;
}
/**
* Sets the value of the exhaustionPoint property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setExhaustionPoint(BigDecimal value) {
this.exhaustionPoint = value;
}
/**
* Gets the value of the incurredRecoveryApplicable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIncurredRecoveryApplicable() {
return incurredRecoveryApplicable;
}
/**
* Sets the value of the incurredRecoveryApplicable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIncurredRecoveryApplicable(Boolean value) {
this.incurredRecoveryApplicable = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy