
org.fpml.fpml_5.confirmation.Deal 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.04.04 at 04:56:21 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* A syndicated bank loan deal (credit agreement) definition.
*
* Java class for Deal complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Deal">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}DealSummary">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}DealRules.model"/>
* <element ref="{http://www.fpml.org/FpML-5/confirmation}facilityGroup" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Deal", propOrder = {
"transferFee",
"proRataFacilities",
"facilityGroup"
})
public class Deal
extends DealSummary
{
protected TransferFeeDefinition transferFee;
protected List proRataFacilities;
@XmlElementRef(name = "facilityGroup", namespace = "http://www.fpml.org/FpML-5/confirmation", type = JAXBElement.class)
protected List> facilityGroup;
/**
* Gets the value of the transferFee property.
*
* @return
* possible object is
* {@link TransferFeeDefinition }
*
*/
public TransferFeeDefinition getTransferFee() {
return transferFee;
}
/**
* Sets the value of the transferFee property.
*
* @param value
* allowed object is
* {@link TransferFeeDefinition }
*
*/
public void setTransferFee(TransferFeeDefinition value) {
this.transferFee = value;
}
/**
* Gets the value of the proRataFacilities 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 JAXB object.
* This is why there is not a set
method for the proRataFacilities property.
*
*
* For example, to add a new item, do as follows:
*
* getProRataFacilities().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProRataFacilities }
*
*
*/
public List getProRataFacilities() {
if (proRataFacilities == null) {
proRataFacilities = new ArrayList();
}
return this.proRataFacilities;
}
/**
* Gets the value of the facilityGroup 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 JAXB object.
* This is why there is not a set
method for the facilityGroup property.
*
*
* For example, to add a new item, do as follows:
*
* getFacilityGroup().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Revolver }{@code >}
* {@link JAXBElement }{@code <}{@link TermLoan }{@code >}
* {@link JAXBElement }{@code <}{@link LetterOfCreditFacility }{@code >}
* {@link JAXBElement }{@code <}{@link DelayedDraw }{@code >}
* {@link JAXBElement }{@code <}{@link AbstractFacility }{@code >}
*
*
*/
public List> getFacilityGroup() {
if (facilityGroup == null) {
facilityGroup = new ArrayList>();
}
return this.facilityGroup;
}
}