net.finmath.smartcontract.product.xml.Deal Maven / Gradle / Ivy
Show all versions of finmath-smart-derivative-contract Show documentation
//
// 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.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.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 = {
"assignmentFee",
"proRataFacilities",
"facilityGroup"
})
public class Deal
extends DealSummary
{
protected AssignmentFee assignmentFee;
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 assignmentFee property.
*
* @return
* possible object is
* {@link AssignmentFee }
*
*/
public AssignmentFee getAssignmentFee() {
return assignmentFee;
}
/**
* Sets the value of the assignmentFee property.
*
* @param value
* allowed object is
* {@link AssignmentFee }
*
*/
public void setAssignmentFee(AssignmentFee value) {
this.assignmentFee = 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 Jakarta XML Binding 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 Jakarta XML Binding 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 LetterOfCreditFacility }{@code >}
* {@link JAXBElement }{@code <}{@link DelayedDraw }{@code >}
* {@link JAXBElement }{@code <}{@link TermLoan }{@code >}
* {@link JAXBElement }{@code <}{@link Facility }{@code >}
*
*
*/
public List> getFacilityGroup() {
if (facilityGroup == null) {
facilityGroup = new ArrayList>();
}
return this.facilityGroup;
}
}