org.fpml.fpml_5.confirmation.AbstractLoanEvent 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* An abstract base type defining common features of a syndicated loan business event.
*
* Java class for AbstractLoanEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AbstractLoanEvent">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractEventRequireId">
* <sequence>
* <element name="parentEventIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}BusinessEventIdentifier" minOccurs="0"/>
* <element name="correctedEventIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}BusinessEventIdentifier" minOccurs="0"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LenderAndCashDetails.model" minOccurs="0"/>
* <element name="comment" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractLoanEvent", propOrder = {
"parentEventIdentifier",
"correctedEventIdentifier",
"lenderPartyReference",
"cashPayable",
"comment"
})
@XmlSeeAlso({
AbstractLoanServicingEvent.class,
AbstractLoanAllocationEvent.class,
AbstractLoanTradeEvent.class,
AbstractLoanAllocationSettlementEvent.class
})
public abstract class AbstractLoanEvent
extends AbstractEventRequireId
{
protected BusinessEventIdentifier parentEventIdentifier;
protected BusinessEventIdentifier correctedEventIdentifier;
protected PartyReference lenderPartyReference;
protected CashPayable cashPayable;
protected String comment;
/**
* Gets the value of the parentEventIdentifier property.
*
* @return
* possible object is
* {@link BusinessEventIdentifier }
*
*/
public BusinessEventIdentifier getParentEventIdentifier() {
return parentEventIdentifier;
}
/**
* Sets the value of the parentEventIdentifier property.
*
* @param value
* allowed object is
* {@link BusinessEventIdentifier }
*
*/
public void setParentEventIdentifier(BusinessEventIdentifier value) {
this.parentEventIdentifier = value;
}
/**
* Gets the value of the correctedEventIdentifier property.
*
* @return
* possible object is
* {@link BusinessEventIdentifier }
*
*/
public BusinessEventIdentifier getCorrectedEventIdentifier() {
return correctedEventIdentifier;
}
/**
* Sets the value of the correctedEventIdentifier property.
*
* @param value
* allowed object is
* {@link BusinessEventIdentifier }
*
*/
public void setCorrectedEventIdentifier(BusinessEventIdentifier value) {
this.correctedEventIdentifier = 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