net.finmath.smartcontract.product.xml.PhysicalSettlementTerms 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.XmlType;
/**
* Java class for PhysicalSettlementTerms complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PhysicalSettlementTerms">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}SettlementTerms">
* <sequence>
* <element name="physicalSettlementPeriod" type="{http://www.fpml.org/FpML-5/confirmation}PhysicalSettlementPeriod" minOccurs="0"/>
* <element name="deliverableObligations" type="{http://www.fpml.org/FpML-5/confirmation}DeliverableObligations" minOccurs="0"/>
* <element name="escrow" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="sixtyBusinessDaySettlementCap" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PhysicalSettlementTerms", propOrder = {
"physicalSettlementPeriod",
"deliverableObligations",
"escrow",
"sixtyBusinessDaySettlementCap"
})
public class PhysicalSettlementTerms
extends SettlementTerms
{
protected PhysicalSettlementPeriod physicalSettlementPeriod;
protected DeliverableObligations deliverableObligations;
protected Boolean escrow;
protected Boolean sixtyBusinessDaySettlementCap;
/**
* Gets the value of the physicalSettlementPeriod property.
*
* @return
* possible object is
* {@link PhysicalSettlementPeriod }
*
*/
public PhysicalSettlementPeriod getPhysicalSettlementPeriod() {
return physicalSettlementPeriod;
}
/**
* Sets the value of the physicalSettlementPeriod property.
*
* @param value
* allowed object is
* {@link PhysicalSettlementPeriod }
*
*/
public void setPhysicalSettlementPeriod(PhysicalSettlementPeriod value) {
this.physicalSettlementPeriod = value;
}
/**
* Gets the value of the deliverableObligations property.
*
* @return
* possible object is
* {@link DeliverableObligations }
*
*/
public DeliverableObligations getDeliverableObligations() {
return deliverableObligations;
}
/**
* Sets the value of the deliverableObligations property.
*
* @param value
* allowed object is
* {@link DeliverableObligations }
*
*/
public void setDeliverableObligations(DeliverableObligations value) {
this.deliverableObligations = value;
}
/**
* Gets the value of the escrow property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEscrow() {
return escrow;
}
/**
* Sets the value of the escrow property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEscrow(Boolean value) {
this.escrow = value;
}
/**
* Gets the value of the sixtyBusinessDaySettlementCap property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSixtyBusinessDaySettlementCap() {
return sixtyBusinessDaySettlementCap;
}
/**
* Sets the value of the sixtyBusinessDaySettlementCap property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSixtyBusinessDaySettlementCap(Boolean value) {
this.sixtyBusinessDaySettlementCap = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy