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

net.finmath.smartcontract.product.xml.DealSummary 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 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 deal.
 * 
 * 

Java class for DealSummary complex type. * *

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

 * <complexType name="DealSummary">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}DealIdentifier">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}DealRoles.model"/>
 *         <element name="creditAgreementDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <choice minOccurs="0">
 *           <element name="currency" type="{http://www.fpml.org/FpML-5/confirmation}Currency"/>
 *           <sequence>
 *             <element name="issuedAmount" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeMoney"/>
 *             <element name="currentDealAmount" type="{http://www.fpml.org/FpML-5/confirmation}MoneyWithParticipantShare" minOccurs="0"/>
 *           </sequence>
 *         </choice>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DealSummary", propOrder = { "issuerPartyReference", "guarantorPartyReference", "agentPartyReference", "syndicationLeadPartyReference", "syndicationCoLeadPartyReference", "creditAgreementDate", "currency", "issuedAmount", "currentDealAmount" }) @XmlSeeAlso({ Deal.class }) public class DealSummary extends DealIdentifier { @XmlElement(required = true) protected PartyReference issuerPartyReference; protected List guarantorPartyReference; @XmlElement(required = true) protected PartyReference agentPartyReference; protected PartyReference syndicationLeadPartyReference; protected List syndicationCoLeadPartyReference; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar creditAgreementDate; protected Currency currency; protected NonNegativeMoney issuedAmount; protected MoneyWithParticipantShare currentDealAmount; /** * Gets the value of the issuerPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getIssuerPartyReference() { return issuerPartyReference; } /** * Sets the value of the issuerPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setIssuerPartyReference(PartyReference value) { this.issuerPartyReference = value; } /** * Gets the value of the guarantorPartyReference 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 guarantorPartyReference property. * *

* For example, to add a new item, do as follows: *

     *    getGuarantorPartyReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyReference } * * */ public List getGuarantorPartyReference() { if (guarantorPartyReference == null) { guarantorPartyReference = new ArrayList(); } return this.guarantorPartyReference; } /** * 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 syndicationLeadPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getSyndicationLeadPartyReference() { return syndicationLeadPartyReference; } /** * Sets the value of the syndicationLeadPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setSyndicationLeadPartyReference(PartyReference value) { this.syndicationLeadPartyReference = value; } /** * Gets the value of the syndicationCoLeadPartyReference 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 syndicationCoLeadPartyReference property. * *

* For example, to add a new item, do as follows: *

     *    getSyndicationCoLeadPartyReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyReference } * * */ public List getSyndicationCoLeadPartyReference() { if (syndicationCoLeadPartyReference == null) { syndicationCoLeadPartyReference = new ArrayList(); } return this.syndicationCoLeadPartyReference; } /** * Gets the value of the creditAgreementDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreditAgreementDate() { return creditAgreementDate; } /** * Sets the value of the creditAgreementDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreditAgreementDate(XMLGregorianCalendar value) { this.creditAgreementDate = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link Currency } * */ public Currency getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link Currency } * */ public void setCurrency(Currency value) { this.currency = value; } /** * Gets the value of the issuedAmount property. * * @return * possible object is * {@link NonNegativeMoney } * */ public NonNegativeMoney getIssuedAmount() { return issuedAmount; } /** * Sets the value of the issuedAmount property. * * @param value * allowed object is * {@link NonNegativeMoney } * */ public void setIssuedAmount(NonNegativeMoney value) { this.issuedAmount = value; } /** * Gets the value of the currentDealAmount property. * * @return * possible object is * {@link MoneyWithParticipantShare } * */ public MoneyWithParticipantShare getCurrentDealAmount() { return currentDealAmount; } /** * Sets the value of the currentDealAmount property. * * @param value * allowed object is * {@link MoneyWithParticipantShare } * */ public void setCurrentDealAmount(MoneyWithParticipantShare value) { this.currentDealAmount = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy