net.finmath.smartcontract.product.xml.PrincipalExchangeDescriptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Specifies each of the characteristics of the principal exchange cashflows,
* in terms of paying/receiving counterparties, amounts and dates.
*
*
* Java class for PrincipalExchangeDescriptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PrincipalExchangeDescriptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
* <element name="principalExchangeAmount" type="{http://www.fpml.org/FpML-5/confirmation}PrincipalExchangeAmount"/>
* <element name="principalExchangeDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PrincipalExchangeDescriptions", propOrder = {
"payerPartyReference",
"payerAccountReference",
"receiverPartyReference",
"receiverAccountReference",
"principalExchangeAmount",
"principalExchangeDate"
})
public class PrincipalExchangeDescriptions {
@XmlElement(required = true)
protected PartyReference payerPartyReference;
protected AccountReference payerAccountReference;
@XmlElement(required = true)
protected PartyReference receiverPartyReference;
protected AccountReference receiverAccountReference;
@XmlElement(required = true)
protected PrincipalExchangeAmount principalExchangeAmount;
protected AdjustableOrRelativeDate principalExchangeDate;
/**
* Gets the value of the payerPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getPayerPartyReference() {
return payerPartyReference;
}
/**
* Sets the value of the payerPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setPayerPartyReference(PartyReference value) {
this.payerPartyReference = value;
}
/**
* Gets the value of the payerAccountReference property.
*
* @return
* possible object is
* {@link AccountReference }
*
*/
public AccountReference getPayerAccountReference() {
return payerAccountReference;
}
/**
* Sets the value of the payerAccountReference property.
*
* @param value
* allowed object is
* {@link AccountReference }
*
*/
public void setPayerAccountReference(AccountReference value) {
this.payerAccountReference = value;
}
/**
* Gets the value of the receiverPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getReceiverPartyReference() {
return receiverPartyReference;
}
/**
* Sets the value of the receiverPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setReceiverPartyReference(PartyReference value) {
this.receiverPartyReference = value;
}
/**
* Gets the value of the receiverAccountReference property.
*
* @return
* possible object is
* {@link AccountReference }
*
*/
public AccountReference getReceiverAccountReference() {
return receiverAccountReference;
}
/**
* Sets the value of the receiverAccountReference property.
*
* @param value
* allowed object is
* {@link AccountReference }
*
*/
public void setReceiverAccountReference(AccountReference value) {
this.receiverAccountReference = value;
}
/**
* Gets the value of the principalExchangeAmount property.
*
* @return
* possible object is
* {@link PrincipalExchangeAmount }
*
*/
public PrincipalExchangeAmount getPrincipalExchangeAmount() {
return principalExchangeAmount;
}
/**
* Sets the value of the principalExchangeAmount property.
*
* @param value
* allowed object is
* {@link PrincipalExchangeAmount }
*
*/
public void setPrincipalExchangeAmount(PrincipalExchangeAmount value) {
this.principalExchangeAmount = value;
}
/**
* Gets the value of the principalExchangeDate property.
*
* @return
* possible object is
* {@link AdjustableOrRelativeDate }
*
*/
public AdjustableOrRelativeDate getPrincipalExchangeDate() {
return principalExchangeDate;
}
/**
* Sets the value of the principalExchangeDate property.
*
* @param value
* allowed object is
* {@link AdjustableOrRelativeDate }
*
*/
public void setPrincipalExchangeDate(AdjustableOrRelativeDate value) {
this.principalExchangeDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy