All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.product.xml.LetterOfCredit Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
//
// 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.XmlType;


/**
 * A definition of an unfunded borrowing (guarantee) instrument known as a
 *                 Letter of Credit.
 *             
 * 
 * 

Java class for LetterOfCredit complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LetterOfCredit">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}LetterOfCreditSummary">
 *       <sequence>
 *         <sequence>
 *           <element name="expiryDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *           <element name="finalExpiryDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         </sequence>
 *         <element name="lcAccrual" type="{http://www.fpml.org/FpML-5/confirmation}LcAccrual"/>
 *         <element name="purpose" type="{http://www.fpml.org/FpML-5/confirmation}LcPurpose" minOccurs="0"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}LetterOfCreditFeatures.model"/>
 *         <element name="facilityFxRate" type="{http://www.fpml.org/FpML-5/confirmation}FxTerms" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LetterOfCredit", propOrder = { "expiryDate", "finalExpiryDate", "lcAccrual", "purpose", "evergreenOption", "lcAutoAdjust", "minLcIssuanceFeeAmount", "facilityFxRate" }) public class LetterOfCredit extends LetterOfCreditSummary { @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar expiryDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar finalExpiryDate; @XmlElement(required = true) protected LcAccrual lcAccrual; protected LcPurpose purpose; protected EvergreenOption evergreenOption; @XmlSchemaType(name = "token") protected LcAutoAdjustEnum lcAutoAdjust; protected MoneyWithParticipantShare minLcIssuanceFeeAmount; protected FxTerms facilityFxRate; /** * Gets the value of the expiryDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpiryDate() { return expiryDate; } /** * Sets the value of the expiryDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpiryDate(XMLGregorianCalendar value) { this.expiryDate = value; } /** * Gets the value of the finalExpiryDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFinalExpiryDate() { return finalExpiryDate; } /** * Sets the value of the finalExpiryDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFinalExpiryDate(XMLGregorianCalendar value) { this.finalExpiryDate = value; } /** * Gets the value of the lcAccrual property. * * @return * possible object is * {@link LcAccrual } * */ public LcAccrual getLcAccrual() { return lcAccrual; } /** * Sets the value of the lcAccrual property. * * @param value * allowed object is * {@link LcAccrual } * */ public void setLcAccrual(LcAccrual value) { this.lcAccrual = value; } /** * Gets the value of the purpose property. * * @return * possible object is * {@link LcPurpose } * */ public LcPurpose getPurpose() { return purpose; } /** * Sets the value of the purpose property. * * @param value * allowed object is * {@link LcPurpose } * */ public void setPurpose(LcPurpose value) { this.purpose = value; } /** * Gets the value of the evergreenOption property. * * @return * possible object is * {@link EvergreenOption } * */ public EvergreenOption getEvergreenOption() { return evergreenOption; } /** * Sets the value of the evergreenOption property. * * @param value * allowed object is * {@link EvergreenOption } * */ public void setEvergreenOption(EvergreenOption value) { this.evergreenOption = value; } /** * Gets the value of the lcAutoAdjust property. * * @return * possible object is * {@link LcAutoAdjustEnum } * */ public LcAutoAdjustEnum getLcAutoAdjust() { return lcAutoAdjust; } /** * Sets the value of the lcAutoAdjust property. * * @param value * allowed object is * {@link LcAutoAdjustEnum } * */ public void setLcAutoAdjust(LcAutoAdjustEnum value) { this.lcAutoAdjust = value; } /** * Gets the value of the minLcIssuanceFeeAmount property. * * @return * possible object is * {@link MoneyWithParticipantShare } * */ public MoneyWithParticipantShare getMinLcIssuanceFeeAmount() { return minLcIssuanceFeeAmount; } /** * Sets the value of the minLcIssuanceFeeAmount property. * * @param value * allowed object is * {@link MoneyWithParticipantShare } * */ public void setMinLcIssuanceFeeAmount(MoneyWithParticipantShare value) { this.minLcIssuanceFeeAmount = value; } /** * Gets the value of the facilityFxRate property. * * @return * possible object is * {@link FxTerms } * */ public FxTerms getFacilityFxRate() { return facilityFxRate; } /** * Sets the value of the facilityFxRate property. * * @param value * allowed object is * {@link FxTerms } * */ public void setFacilityFxRate(FxTerms value) { this.facilityFxRate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy