org.fpml.fpml_5.confirmation.LetterOfCreditSummary 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.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* A short form definition of a letter of credit.
*
* Java class for LetterOfCreditSummary complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LetterOfCreditSummary">
* <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="type" type="{http://www.fpml.org/FpML-5/confirmation}LcType"/>
* <element name="effectiveDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LetterOfCreditRoles.model"/>
* <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}MoneyWithParticipantShare"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LetterOfCreditSummary", propOrder = {
"identifier",
"type",
"effectiveDate",
"borrowerPartyReference",
"issuingBankPartyReference",
"beneficiaryPartyReference",
"amount"
})
@XmlSeeAlso({
LetterOfCredit.class
})
public class LetterOfCreditSummary {
@XmlElement(required = true)
protected List identifier;
@XmlElement(required = true)
protected LcType type;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar effectiveDate;
@XmlElement(required = true)
protected PartyReference borrowerPartyReference;
@XmlElement(required = true)
protected PartyReference issuingBankPartyReference;
protected PartyReference beneficiaryPartyReference;
@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 JAXB 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 type property.
*
* @return
* possible object is
* {@link LcType }
*
*/
public LcType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link LcType }
*
*/
public void setType(LcType value) {
this.type = 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 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 issuingBankPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getIssuingBankPartyReference() {
return issuingBankPartyReference;
}
/**
* Sets the value of the issuingBankPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setIssuingBankPartyReference(PartyReference value) {
this.issuingBankPartyReference = value;
}
/**
* Gets the value of the beneficiaryPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getBeneficiaryPartyReference() {
return beneficiaryPartyReference;
}
/**
* Sets the value of the beneficiaryPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setBeneficiaryPartyReference(PartyReference value) {
this.beneficiaryPartyReference = 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;
}
}