org.fpml.fpml_5.confirmation.LoanTrade Maven / Gradle / Ivy
The 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.07.26 at 10:31:12 AM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigDecimal;
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.XmlType;
/**
* A structure that defines counterparty-to-counterparty loan trade information. This structure contains the main (e.g. fund manager/main counterparty) trade details.
*
* Java class for LoanTrade complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoanTrade">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}AbstractLoanTrade">
* <sequence>
* <element name="price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="transferFee" type="{http://www.fpml.org/FpML-5/confirmation}LoanTransferFee"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanTradingCounterpartyCashSettlementRules.model"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}LoanTradingParticipationSettlementTerms.model" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanTrade", propOrder = {
"price",
"transferFee",
"documentationType",
"accrualSettlementType",
"delayedCompensationFlag",
"nonRecurringFeesBenefactor",
"collateralRequiredFlag",
"votingRights"
})
public class LoanTrade
extends AbstractLoanTrade
{
@XmlElement(required = true)
protected BigDecimal price;
@XmlElement(required = true)
protected LoanTransferFee transferFee;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected LoanTradingDocTypeEnum documentationType;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected LoanTradingAccrualSettlementEnum accrualSettlementType;
protected boolean delayedCompensationFlag;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected BuySellEnum nonRecurringFeesBenefactor;
protected Boolean collateralRequiredFlag;
@XmlSchemaType(name = "token")
protected LoanTradingVotingRightsEnum votingRights;
/**
* Gets the value of the price property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPrice() {
return price;
}
/**
* Sets the value of the price property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPrice(BigDecimal value) {
this.price = value;
}
/**
* Gets the value of the transferFee property.
*
* @return
* possible object is
* {@link LoanTransferFee }
*
*/
public LoanTransferFee getTransferFee() {
return transferFee;
}
/**
* Sets the value of the transferFee property.
*
* @param value
* allowed object is
* {@link LoanTransferFee }
*
*/
public void setTransferFee(LoanTransferFee value) {
this.transferFee = value;
}
/**
* Gets the value of the documentationType property.
*
* @return
* possible object is
* {@link LoanTradingDocTypeEnum }
*
*/
public LoanTradingDocTypeEnum getDocumentationType() {
return documentationType;
}
/**
* Sets the value of the documentationType property.
*
* @param value
* allowed object is
* {@link LoanTradingDocTypeEnum }
*
*/
public void setDocumentationType(LoanTradingDocTypeEnum value) {
this.documentationType = value;
}
/**
* Gets the value of the accrualSettlementType property.
*
* @return
* possible object is
* {@link LoanTradingAccrualSettlementEnum }
*
*/
public LoanTradingAccrualSettlementEnum getAccrualSettlementType() {
return accrualSettlementType;
}
/**
* Sets the value of the accrualSettlementType property.
*
* @param value
* allowed object is
* {@link LoanTradingAccrualSettlementEnum }
*
*/
public void setAccrualSettlementType(LoanTradingAccrualSettlementEnum value) {
this.accrualSettlementType = value;
}
/**
* Gets the value of the delayedCompensationFlag property.
*
*/
public boolean isDelayedCompensationFlag() {
return delayedCompensationFlag;
}
/**
* Sets the value of the delayedCompensationFlag property.
*
*/
public void setDelayedCompensationFlag(boolean value) {
this.delayedCompensationFlag = value;
}
/**
* Gets the value of the nonRecurringFeesBenefactor property.
*
* @return
* possible object is
* {@link BuySellEnum }
*
*/
public BuySellEnum getNonRecurringFeesBenefactor() {
return nonRecurringFeesBenefactor;
}
/**
* Sets the value of the nonRecurringFeesBenefactor property.
*
* @param value
* allowed object is
* {@link BuySellEnum }
*
*/
public void setNonRecurringFeesBenefactor(BuySellEnum value) {
this.nonRecurringFeesBenefactor = value;
}
/**
* Gets the value of the collateralRequiredFlag property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCollateralRequiredFlag() {
return collateralRequiredFlag;
}
/**
* Sets the value of the collateralRequiredFlag property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCollateralRequiredFlag(Boolean value) {
this.collateralRequiredFlag = value;
}
/**
* Gets the value of the votingRights property.
*
* @return
* possible object is
* {@link LoanTradingVotingRightsEnum }
*
*/
public LoanTradingVotingRightsEnum getVotingRights() {
return votingRights;
}
/**
* Sets the value of the votingRights property.
*
* @param value
* allowed object is
* {@link LoanTradingVotingRightsEnum }
*
*/
public void setVotingRights(LoanTradingVotingRightsEnum value) {
this.votingRights = value;
}
}