All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fpml.fpml_5.confirmation.CreditCurve Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// 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.XmlType;


/**
 * A generic credit curve definition.
 * 
 * 

Java class for CreditCurve complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CreditCurve">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}PricingStructure">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}CreditCurveCharacteristics.model" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreditCurve", propOrder = { "referenceEntity", "creditEntityReference", "creditEvents", "seniority", "secured", "obligationCurrency", "obligations", "deliverableObligations" }) public class CreditCurve extends PricingStructure { protected LegalEntity referenceEntity; protected LegalEntityReference creditEntityReference; protected CreditEvents creditEvents; protected CreditSeniority seniority; protected Boolean secured; protected Currency obligationCurrency; protected Obligations obligations; protected DeliverableObligations deliverableObligations; /** * Gets the value of the referenceEntity property. * * @return * possible object is * {@link LegalEntity } * */ public LegalEntity getReferenceEntity() { return referenceEntity; } /** * Sets the value of the referenceEntity property. * * @param value * allowed object is * {@link LegalEntity } * */ public void setReferenceEntity(LegalEntity value) { this.referenceEntity = value; } /** * Gets the value of the creditEntityReference property. * * @return * possible object is * {@link LegalEntityReference } * */ public LegalEntityReference getCreditEntityReference() { return creditEntityReference; } /** * Sets the value of the creditEntityReference property. * * @param value * allowed object is * {@link LegalEntityReference } * */ public void setCreditEntityReference(LegalEntityReference value) { this.creditEntityReference = value; } /** * Gets the value of the creditEvents property. * * @return * possible object is * {@link CreditEvents } * */ public CreditEvents getCreditEvents() { return creditEvents; } /** * Sets the value of the creditEvents property. * * @param value * allowed object is * {@link CreditEvents } * */ public void setCreditEvents(CreditEvents value) { this.creditEvents = value; } /** * Gets the value of the seniority property. * * @return * possible object is * {@link CreditSeniority } * */ public CreditSeniority getSeniority() { return seniority; } /** * Sets the value of the seniority property. * * @param value * allowed object is * {@link CreditSeniority } * */ public void setSeniority(CreditSeniority value) { this.seniority = value; } /** * Gets the value of the secured property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSecured() { return secured; } /** * Sets the value of the secured property. * * @param value * allowed object is * {@link Boolean } * */ public void setSecured(Boolean value) { this.secured = value; } /** * Gets the value of the obligationCurrency property. * * @return * possible object is * {@link Currency } * */ public Currency getObligationCurrency() { return obligationCurrency; } /** * Sets the value of the obligationCurrency property. * * @param value * allowed object is * {@link Currency } * */ public void setObligationCurrency(Currency value) { this.obligationCurrency = value; } /** * Gets the value of the obligations property. * * @return * possible object is * {@link Obligations } * */ public Obligations getObligations() { return obligations; } /** * Sets the value of the obligations property. * * @param value * allowed object is * {@link Obligations } * */ public void setObligations(Obligations value) { this.obligations = value; } /** * Gets the value of the deliverableObligations property. * * @return * possible object is * {@link DeliverableObligations } * */ public DeliverableObligations getDeliverableObligations() { return deliverableObligations; } /** * Sets the value of the deliverableObligations property. * * @param value * allowed object is * {@link DeliverableObligations } * */ public void setDeliverableObligations(DeliverableObligations value) { this.deliverableObligations = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy