net.finmath.smartcontract.product.xml.AccruingPikPayment Maven / Gradle / Ivy
Show all versions of finmath-smart-derivative-contract Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* An event representing a payment to facilitate capitalization of interest on
* all outstanding contracts against a particular facility.
*
*
* Java class for AccruingPikPayment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccruingPikPayment">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}FacilityEvent">
* <sequence>
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}Period.model"/>
* <element name="amount" type="{http://www.fpml.org/FpML-5/confirmation}MoneyWithParticipantShare"/>
* <element name="accrualSchedule" type="{http://www.fpml.org/FpML-5/confirmation}AccrualPeriod" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccruingPikPayment", propOrder = {
"startDate",
"endDate",
"amount",
"accrualSchedule"
})
public class AccruingPikPayment
extends FacilityEvent
{
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDate;
@XmlElement(required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDate;
@XmlElement(required = true)
protected MoneyWithParticipantShare amount;
protected List accrualSchedule;
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartDate(XMLGregorianCalendar value) {
this.startDate = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndDate(XMLGregorianCalendar value) {
this.endDate = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link MoneyWithParticipantShare }
*
*/
public MoneyWithParticipantShare getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link MoneyWithParticipantShare }
*
*/
public void setAmount(MoneyWithParticipantShare value) {
this.amount = value;
}
/**
* Gets the value of the accrualSchedule property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the accrualSchedule property.
*
*
* For example, to add a new item, do as follows:
*
* getAccrualSchedule().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AccrualPeriod }
*
*
*/
public List getAccrualSchedule() {
if (accrualSchedule == null) {
accrualSchedule = new ArrayList();
}
return this.accrualSchedule;
}
}