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

net.finmath.smartcontract.product.xml.Facility Maven / Gradle / Ivy

//
// 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * An abstract type defining a facility baseline structure.
 *             
 * 
 * 

Java class for Facility complex type. * *

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

 * <complexType name="Facility">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}FacilitySummary">
 *       <sequence>
 *         <element name="governingLaw" type="{http://www.fpml.org/FpML-5/confirmation}GoverningLaw" minOccurs="0"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}FacilityFeatures.model"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}FacilityOptionsFeesAndRates.model"/>
 *         <element name="multiCurrency" type="{http://www.fpml.org/FpML-5/confirmation}MultiCurrency" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Facility", propOrder = { "governingLaw", "feature", "lien", "seniority", "fixedRateOptionOrFloatingRateOptionOrLcOption", "accruingPikOption", "accruingFeeOption", "defaultRate", "mandatoryCostRate", "penaltyRate", "multiCurrency" }) @XmlSeeAlso({ DelayedDraw.class, LetterOfCreditFacility.class, Revolver.class, TermLoan.class }) public abstract class Facility extends FacilitySummary { protected GoverningLaw governingLaw; protected List feature; protected Lien lien; protected CreditSeniority seniority; @XmlElements({ @XmlElement(name = "fixedRateOption", type = FixedRateOption.class), @XmlElement(name = "floatingRateOption", type = FloatingRateOption.class), @XmlElement(name = "lcOption", type = LcOption.class) }) protected List fixedRateOptionOrFloatingRateOptionOrLcOption; protected AccruingPikOption accruingPikOption; protected List accruingFeeOption; protected PeriodRate defaultRate; protected PeriodRate mandatoryCostRate; protected PeriodRate penaltyRate; protected MultiCurrency multiCurrency; /** * Gets the value of the governingLaw property. * * @return * possible object is * {@link GoverningLaw } * */ public GoverningLaw getGoverningLaw() { return governingLaw; } /** * Sets the value of the governingLaw property. * * @param value * allowed object is * {@link GoverningLaw } * */ public void setGoverningLaw(GoverningLaw value) { this.governingLaw = value; } /** * Gets the value of the feature property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the feature property. * *

* For example, to add a new item, do as follows: *

     *    getFeature().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FacilityFeature } * * */ public List getFeature() { if (feature == null) { feature = new ArrayList(); } return this.feature; } /** * Gets the value of the lien property. * * @return * possible object is * {@link Lien } * */ public Lien getLien() { return lien; } /** * Sets the value of the lien property. * * @param value * allowed object is * {@link Lien } * */ public void setLien(Lien value) { this.lien = 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 fixedRateOptionOrFloatingRateOptionOrLcOption property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the fixedRateOptionOrFloatingRateOptionOrLcOption property. * *

* For example, to add a new item, do as follows: *

     *    getFixedRateOptionOrFloatingRateOptionOrLcOption().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FixedRateOption } * {@link FloatingRateOption } * {@link LcOption } * * */ public List getFixedRateOptionOrFloatingRateOptionOrLcOption() { if (fixedRateOptionOrFloatingRateOptionOrLcOption == null) { fixedRateOptionOrFloatingRateOptionOrLcOption = new ArrayList(); } return this.fixedRateOptionOrFloatingRateOptionOrLcOption; } /** * Gets the value of the accruingPikOption property. * * @return * possible object is * {@link AccruingPikOption } * */ public AccruingPikOption getAccruingPikOption() { return accruingPikOption; } /** * Sets the value of the accruingPikOption property. * * @param value * allowed object is * {@link AccruingPikOption } * */ public void setAccruingPikOption(AccruingPikOption value) { this.accruingPikOption = value; } /** * Gets the value of the accruingFeeOption property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the accruingFeeOption property. * *

* For example, to add a new item, do as follows: *

     *    getAccruingFeeOption().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AccruingFeeOption } * * */ public List getAccruingFeeOption() { if (accruingFeeOption == null) { accruingFeeOption = new ArrayList(); } return this.accruingFeeOption; } /** * Gets the value of the defaultRate property. * * @return * possible object is * {@link PeriodRate } * */ public PeriodRate getDefaultRate() { return defaultRate; } /** * Sets the value of the defaultRate property. * * @param value * allowed object is * {@link PeriodRate } * */ public void setDefaultRate(PeriodRate value) { this.defaultRate = value; } /** * Gets the value of the mandatoryCostRate property. * * @return * possible object is * {@link PeriodRate } * */ public PeriodRate getMandatoryCostRate() { return mandatoryCostRate; } /** * Sets the value of the mandatoryCostRate property. * * @param value * allowed object is * {@link PeriodRate } * */ public void setMandatoryCostRate(PeriodRate value) { this.mandatoryCostRate = value; } /** * Gets the value of the penaltyRate property. * * @return * possible object is * {@link PeriodRate } * */ public PeriodRate getPenaltyRate() { return penaltyRate; } /** * Sets the value of the penaltyRate property. * * @param value * allowed object is * {@link PeriodRate } * */ public void setPenaltyRate(PeriodRate value) { this.penaltyRate = value; } /** * Gets the value of the multiCurrency property. * * @return * possible object is * {@link MultiCurrency } * */ public MultiCurrency getMultiCurrency() { return multiCurrency; } /** * Sets the value of the multiCurrency property. * * @param value * allowed object is * {@link MultiCurrency } * */ public void setMultiCurrency(MultiCurrency value) { this.multiCurrency = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy