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

org.fpml.fpml_5.confirmation.LoanAllocation 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.XmlType;


/**
 * An event structure defining information related to a loan trade allocation.
 * 
 * 

Java class for LoanAllocation complex type. * *

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

 * <complexType name="LoanAllocation">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractLoanAllocationSummary">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanAllocationParties.model"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}BuyerSeller.model" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LoanAllocation", propOrder = { "originalPartyReference", "allocatedPartyReference", "buyerPartyReference", "buyerAccountReference", "sellerPartyReference", "sellerAccountReference" }) public class LoanAllocation extends AbstractLoanAllocationSummary { @XmlElement(required = true) protected PartyReference originalPartyReference; @XmlElement(required = true) protected PartyReference allocatedPartyReference; protected PartyReference buyerPartyReference; protected AccountReference buyerAccountReference; protected PartyReference sellerPartyReference; protected AccountReference sellerAccountReference; /** * Gets the value of the originalPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getOriginalPartyReference() { return originalPartyReference; } /** * Sets the value of the originalPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setOriginalPartyReference(PartyReference value) { this.originalPartyReference = value; } /** * Gets the value of the allocatedPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getAllocatedPartyReference() { return allocatedPartyReference; } /** * Sets the value of the allocatedPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setAllocatedPartyReference(PartyReference value) { this.allocatedPartyReference = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy