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

org.fpml.fpml_5.confirmation.ReferencePoolItem 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * This type contains all the constituent weight and reference information.
 * 
 * 

Java class for ReferencePoolItem complex type. * *

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

 * <complexType name="ReferencePoolItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="constituentWeight" type="{http://www.fpml.org/FpML-5/confirmation}ConstituentWeight" minOccurs="0"/>
 *         <element name="referencePair" type="{http://www.fpml.org/FpML-5/confirmation}ReferencePair"/>
 *         <element name="protectionTermsReference" type="{http://www.fpml.org/FpML-5/confirmation}ProtectionTermsReference" minOccurs="0"/>
 *         <element name="settlementTermsReference" type="{http://www.fpml.org/FpML-5/confirmation}SettlementTermsReference" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReferencePoolItem", propOrder = { "constituentWeight", "referencePair", "protectionTermsReference", "settlementTermsReference" }) public class ReferencePoolItem { protected ConstituentWeight constituentWeight; @XmlElement(required = true) protected ReferencePair referencePair; protected ProtectionTermsReference protectionTermsReference; protected SettlementTermsReference settlementTermsReference; /** * Gets the value of the constituentWeight property. * * @return * possible object is * {@link ConstituentWeight } * */ public ConstituentWeight getConstituentWeight() { return constituentWeight; } /** * Sets the value of the constituentWeight property. * * @param value * allowed object is * {@link ConstituentWeight } * */ public void setConstituentWeight(ConstituentWeight value) { this.constituentWeight = value; } /** * Gets the value of the referencePair property. * * @return * possible object is * {@link ReferencePair } * */ public ReferencePair getReferencePair() { return referencePair; } /** * Sets the value of the referencePair property. * * @param value * allowed object is * {@link ReferencePair } * */ public void setReferencePair(ReferencePair value) { this.referencePair = value; } /** * Gets the value of the protectionTermsReference property. * * @return * possible object is * {@link ProtectionTermsReference } * */ public ProtectionTermsReference getProtectionTermsReference() { return protectionTermsReference; } /** * Sets the value of the protectionTermsReference property. * * @param value * allowed object is * {@link ProtectionTermsReference } * */ public void setProtectionTermsReference(ProtectionTermsReference value) { this.protectionTermsReference = value; } /** * Gets the value of the settlementTermsReference property. * * @return * possible object is * {@link SettlementTermsReference } * */ public SettlementTermsReference getSettlementTermsReference() { return settlementTermsReference; } /** * Sets the value of the settlementTermsReference property. * * @param value * allowed object is * {@link SettlementTermsReference } * */ public void setSettlementTermsReference(SettlementTermsReference value) { this.settlementTermsReference = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy