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

org.fpml.fpml_5.confirmation.AbstractLoanTrade Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// 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 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;


/**
 * An underlying structure defining fundamental master loan trade event information.
 * 
 * 

Java class for AbstractLoanTrade complex type. * *

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

 * <complexType name="AbstractLoanTrade">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractLoanTradeSummary">
 *       <sequence>
 *         <sequence>
 *           <element name="tradeDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *           <group ref="{http://www.fpml.org/FpML-5/confirmation}BuyerSeller.model"/>
 *         </sequence>
 *         <sequence>
 *           <element name="type" type="{http://www.fpml.org/FpML-5/confirmation}LoanTradingTypeEnum"/>
 *           <element name="whenIssuedFlag" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         </sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanTradingSettlementTerms.model"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractLoanTrade", propOrder = { "tradeDate", "buyerPartyReference", "buyerAccountReference", "sellerPartyReference", "sellerAccountReference", "type", "whenIssuedFlag", "tradingAssociation", "formOfPurchase" }) @XmlSeeAlso({ LoanTrade.class, LoanTransfer.class }) public abstract class AbstractLoanTrade extends AbstractLoanTradeSummary { @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradeDate; @XmlElement(required = true) protected PartyReference buyerPartyReference; protected AccountReference buyerAccountReference; @XmlElement(required = true) protected PartyReference sellerPartyReference; protected AccountReference sellerAccountReference; @XmlElement(required = true) @XmlSchemaType(name = "string") protected LoanTradingTypeEnum type; protected boolean whenIssuedFlag; @XmlElement(required = true) @XmlSchemaType(name = "token") protected LoanTradingAssocEnum tradingAssociation; @XmlElement(required = true) @XmlSchemaType(name = "token") protected LoanTradingFormOfPurchaseEnum formOfPurchase; /** * Gets the value of the tradeDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTradeDate() { return tradeDate; } /** * Sets the value of the tradeDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTradeDate(XMLGregorianCalendar value) { this.tradeDate = value; } /** * Gets the value of the buyerPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getBuyerPartyReference() { return buyerPartyReference; } /** * Sets the value of the buyerPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setBuyerPartyReference(PartyReference value) { this.buyerPartyReference = value; } /** * Gets the value of the buyerAccountReference property. * * @return * possible object is * {@link AccountReference } * */ public AccountReference getBuyerAccountReference() { return buyerAccountReference; } /** * Sets the value of the buyerAccountReference property. * * @param value * allowed object is * {@link AccountReference } * */ public void setBuyerAccountReference(AccountReference value) { this.buyerAccountReference = value; } /** * Gets the value of the sellerPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getSellerPartyReference() { return sellerPartyReference; } /** * Sets the value of the sellerPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setSellerPartyReference(PartyReference value) { this.sellerPartyReference = value; } /** * Gets the value of the sellerAccountReference property. * * @return * possible object is * {@link AccountReference } * */ public AccountReference getSellerAccountReference() { return sellerAccountReference; } /** * Sets the value of the sellerAccountReference property. * * @param value * allowed object is * {@link AccountReference } * */ public void setSellerAccountReference(AccountReference value) { this.sellerAccountReference = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link LoanTradingTypeEnum } * */ public LoanTradingTypeEnum getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link LoanTradingTypeEnum } * */ public void setType(LoanTradingTypeEnum value) { this.type = value; } /** * Gets the value of the whenIssuedFlag property. * */ public boolean isWhenIssuedFlag() { return whenIssuedFlag; } /** * Sets the value of the whenIssuedFlag property. * */ public void setWhenIssuedFlag(boolean value) { this.whenIssuedFlag = value; } /** * Gets the value of the tradingAssociation property. * * @return * possible object is * {@link LoanTradingAssocEnum } * */ public LoanTradingAssocEnum getTradingAssociation() { return tradingAssociation; } /** * Sets the value of the tradingAssociation property. * * @param value * allowed object is * {@link LoanTradingAssocEnum } * */ public void setTradingAssociation(LoanTradingAssocEnum value) { this.tradingAssociation = value; } /** * Gets the value of the formOfPurchase property. * * @return * possible object is * {@link LoanTradingFormOfPurchaseEnum } * */ public LoanTradingFormOfPurchaseEnum getFormOfPurchase() { return formOfPurchase; } /** * Sets the value of the formOfPurchase property. * * @param value * allowed object is * {@link LoanTradingFormOfPurchaseEnum } * */ public void setFormOfPurchase(LoanTradingFormOfPurchaseEnum value) { this.formOfPurchase = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy