net.finmath.smartcontract.product.xml.SimpleCreditDefaultSwap 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;
/**
* Java class for SimpleCreditDefaultSwap complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SimpleCreditDefaultSwap">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}UnderlyingAsset">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}CreditEntity.model"/>
* <element name="term" type="{http://www.fpml.org/FpML-5/confirmation}Period"/>
* <element name="paymentFrequency" type="{http://www.fpml.org/FpML-5/confirmation}Period" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SimpleCreditDefaultSwap", propOrder = {
"referenceEntity",
"creditEntityReference",
"term",
"paymentFrequency"
})
public class SimpleCreditDefaultSwap
extends UnderlyingAsset
{
protected LegalEntity referenceEntity;
protected LegalEntityReference creditEntityReference;
@XmlElement(required = true)
protected Period term;
protected Period paymentFrequency;
/**
* Gets the value of the referenceEntity property.
*
* @return
* possible object is
* {@link LegalEntity }
*
*/
public LegalEntity getReferenceEntity() {
return referenceEntity;
}
/**
* Sets the value of the referenceEntity property.
*
* @param value
* allowed object is
* {@link LegalEntity }
*
*/
public void setReferenceEntity(LegalEntity value) {
this.referenceEntity = value;
}
/**
* Gets the value of the creditEntityReference property.
*
* @return
* possible object is
* {@link LegalEntityReference }
*
*/
public LegalEntityReference getCreditEntityReference() {
return creditEntityReference;
}
/**
* Sets the value of the creditEntityReference property.
*
* @param value
* allowed object is
* {@link LegalEntityReference }
*
*/
public void setCreditEntityReference(LegalEntityReference value) {
this.creditEntityReference = value;
}
/**
* Gets the value of the term property.
*
* @return
* possible object is
* {@link Period }
*
*/
public Period getTerm() {
return term;
}
/**
* Sets the value of the term property.
*
* @param value
* allowed object is
* {@link Period }
*
*/
public void setTerm(Period value) {
this.term = value;
}
/**
* Gets the value of the paymentFrequency property.
*
* @return
* possible object is
* {@link Period }
*
*/
public Period getPaymentFrequency() {
return paymentFrequency;
}
/**
* Sets the value of the paymentFrequency property.
*
* @param value
* allowed object is
* {@link Period }
*
*/
public void setPaymentFrequency(Period value) {
this.paymentFrequency = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy