net.finmath.smartcontract.product.xml.ExerciseFeeSchedule 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;
/**
* A type to define a fee or schedule of fees to be payable on the exercise of
* an option. This fee may be defined as an amount or a percentage of the notional exercised.
*
*
* Java class for ExerciseFeeSchedule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ExerciseFeeSchedule">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}PayerReceiver.model"/>
* <element name="notionalReference" type="{http://www.fpml.org/FpML-5/confirmation}ScheduleReference"/>
* <choice>
* <element name="feeAmountSchedule" type="{http://www.fpml.org/FpML-5/confirmation}AmountSchedule"/>
* <element name="feeRateSchedule" type="{http://www.fpml.org/FpML-5/confirmation}Schedule"/>
* </choice>
* <element name="feePaymentDate" type="{http://www.fpml.org/FpML-5/confirmation}RelativeDateOffset"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExerciseFeeSchedule", propOrder = {
"payerPartyReference",
"payerAccountReference",
"receiverPartyReference",
"receiverAccountReference",
"notionalReference",
"feeAmountSchedule",
"feeRateSchedule",
"feePaymentDate"
})
public class ExerciseFeeSchedule {
@XmlElement(required = true)
protected PartyReference payerPartyReference;
protected AccountReference payerAccountReference;
@XmlElement(required = true)
protected PartyReference receiverPartyReference;
protected AccountReference receiverAccountReference;
@XmlElement(required = true)
protected ScheduleReference notionalReference;
protected AmountSchedule feeAmountSchedule;
protected Schedule feeRateSchedule;
@XmlElement(required = true)
protected RelativeDateOffset feePaymentDate;
/**
* 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 notionalReference property.
*
* @return
* possible object is
* {@link ScheduleReference }
*
*/
public ScheduleReference getNotionalReference() {
return notionalReference;
}
/**
* Sets the value of the notionalReference property.
*
* @param value
* allowed object is
* {@link ScheduleReference }
*
*/
public void setNotionalReference(ScheduleReference value) {
this.notionalReference = value;
}
/**
* Gets the value of the feeAmountSchedule property.
*
* @return
* possible object is
* {@link AmountSchedule }
*
*/
public AmountSchedule getFeeAmountSchedule() {
return feeAmountSchedule;
}
/**
* Sets the value of the feeAmountSchedule property.
*
* @param value
* allowed object is
* {@link AmountSchedule }
*
*/
public void setFeeAmountSchedule(AmountSchedule value) {
this.feeAmountSchedule = value;
}
/**
* Gets the value of the feeRateSchedule property.
*
* @return
* possible object is
* {@link Schedule }
*
*/
public Schedule getFeeRateSchedule() {
return feeRateSchedule;
}
/**
* Sets the value of the feeRateSchedule property.
*
* @param value
* allowed object is
* {@link Schedule }
*
*/
public void setFeeRateSchedule(Schedule value) {
this.feeRateSchedule = value;
}
/**
* Gets the value of the feePaymentDate property.
*
* @return
* possible object is
* {@link RelativeDateOffset }
*
*/
public RelativeDateOffset getFeePaymentDate() {
return feePaymentDate;
}
/**
* Sets the value of the feePaymentDate property.
*
* @param value
* allowed object is
* {@link RelativeDateOffset }
*
*/
public void setFeePaymentDate(RelativeDateOffset value) {
this.feePaymentDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy