net.finmath.smartcontract.product.xml.LoanEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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 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;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* An abstract base type defining common features of a syndicated loan
* business event. Such events are originated by the borrower and are required to be communicated to the
* lender syndicate by agents.
*
*
* Java class for LoanEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoanEvent">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractEventRequireId">
* <sequence>
* <element name="businessEventGroupId" type="{http://www.fpml.org/FpML-5/confirmation}BusinessEventGroupIdentifier" minOccurs="0"/>
* <element name="previousInaccurateEventId" type="{http://www.fpml.org/FpML-5/confirmation}BusinessEventIdentifier" minOccurs="0"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}BusinessEventParties.model"/>
* <element name="effectiveDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LenderAndCashDetails.model" minOccurs="0"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}normalizedString" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanEvent", propOrder = {
"businessEventGroupId",
"previousInaccurateEventId",
"agentPartyReference",
"borrowerPartyReference",
"effectiveDate",
"lenderPartyReference",
"cashPayable",
"comment"
})
@XmlSeeAlso({
LoanContractEvent.class,
LcEvent.class,
FacilityContractEvent.class,
FacilityEvent.class
})
public abstract class LoanEvent
extends AbstractEventRequireId
{
protected BusinessEventGroupIdentifier businessEventGroupId;
protected BusinessEventIdentifier previousInaccurateEventId;
protected PartyReference agentPartyReference;
protected PartyReference borrowerPartyReference;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar effectiveDate;
protected PartyReference lenderPartyReference;
protected CashPayable cashPayable;
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String comment;
/**
* Gets the value of the businessEventGroupId property.
*
* @return
* possible object is
* {@link BusinessEventGroupIdentifier }
*
*/
public BusinessEventGroupIdentifier getBusinessEventGroupId() {
return businessEventGroupId;
}
/**
* Sets the value of the businessEventGroupId property.
*
* @param value
* allowed object is
* {@link BusinessEventGroupIdentifier }
*
*/
public void setBusinessEventGroupId(BusinessEventGroupIdentifier value) {
this.businessEventGroupId = value;
}
/**
* Gets the value of the previousInaccurateEventId property.
*
* @return
* possible object is
* {@link BusinessEventIdentifier }
*
*/
public BusinessEventIdentifier getPreviousInaccurateEventId() {
return previousInaccurateEventId;
}
/**
* Sets the value of the previousInaccurateEventId property.
*
* @param value
* allowed object is
* {@link BusinessEventIdentifier }
*
*/
public void setPreviousInaccurateEventId(BusinessEventIdentifier value) {
this.previousInaccurateEventId = value;
}
/**
* Gets the value of the agentPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getAgentPartyReference() {
return agentPartyReference;
}
/**
* Sets the value of the agentPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setAgentPartyReference(PartyReference value) {
this.agentPartyReference = 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 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 lenderPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getLenderPartyReference() {
return lenderPartyReference;
}
/**
* Sets the value of the lenderPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setLenderPartyReference(PartyReference value) {
this.lenderPartyReference = value;
}
/**
* Gets the value of the cashPayable property.
*
* @return
* possible object is
* {@link CashPayable }
*
*/
public CashPayable getCashPayable() {
return cashPayable;
}
/**
* Sets the value of the cashPayable property.
*
* @param value
* allowed object is
* {@link CashPayable }
*
*/
public void setCashPayable(CashPayable value) {
this.cashPayable = value;
}
/**
* Gets the value of the comment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Sets the value of the comment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy