net.finmath.smartcontract.product.xml.LoanContractSummary 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* A short form of a loan contract.
*
* Java class for LoanContractSummary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoanContractSummary">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="identifier" type="{http://www.fpml.org/FpML-5/confirmation}FacilityContractIdentifier" maxOccurs="unbounded"/>
* <element name="effectiveDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <sequence>
* <element name="borrowerPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference"/>
* <element name="guarantorPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" minOccurs="0"/>
* </sequence>
* <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}MoneyWithParticipantShare"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanContractSummary", propOrder = {
"identifier",
"effectiveDate",
"borrowerPartyReference",
"guarantorPartyReference",
"amount"
})
@XmlSeeAlso({
LoanContract.class
})
public class LoanContractSummary {
@XmlElement(required = true)
protected List identifier;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar effectiveDate;
@XmlElement(required = true)
protected PartyReference borrowerPartyReference;
protected PartyReference guarantorPartyReference;
@XmlElement(required = true)
protected MoneyWithParticipantShare amount;
/**
* Gets the value of the identifier 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 identifier property.
*
*
* For example, to add a new item, do as follows:
*
* getIdentifier().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FacilityContractIdentifier }
*
*
*/
public List getIdentifier() {
if (identifier == null) {
identifier = new ArrayList();
}
return this.identifier;
}
/**
* Gets the value of the effectiveDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEffectiveDate() {
return effectiveDate;
}
/**
* Sets the value of the effectiveDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEffectiveDate(XMLGregorianCalendar value) {
this.effectiveDate = value;
}
/**
* Gets the value of the borrowerPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getBorrowerPartyReference() {
return borrowerPartyReference;
}
/**
* Sets the value of the borrowerPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setBorrowerPartyReference(PartyReference value) {
this.borrowerPartyReference = value;
}
/**
* Gets the value of the guarantorPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getGuarantorPartyReference() {
return guarantorPartyReference;
}
/**
* Sets the value of the guarantorPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setGuarantorPartyReference(PartyReference value) {
this.guarantorPartyReference = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link MoneyWithParticipantShare }
*
*/
public MoneyWithParticipantShare getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link MoneyWithParticipantShare }
*
*/
public void setAmount(MoneyWithParticipantShare value) {
this.amount = value;
}
}