net.finmath.smartcontract.product.xml.Bond 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 java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* An exchange traded bond.
*
* Java class for Bond complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Bond">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}UnderlyingAsset">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}FixedIncomeSecurityContent.model"/>
* <element name="parValue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="faceAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}BondCalculation.model"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Bond", propOrder = {
"issuerName",
"issuerPartyReference",
"seniority",
"couponType",
"couponRate",
"maturity",
"parValue",
"faceAmount",
"paymentFrequency",
"dayCountFraction"
})
@XmlSeeAlso({
ConvertibleBond.class
})
public class Bond
extends UnderlyingAsset
{
protected String issuerName;
protected PartyReference issuerPartyReference;
protected CreditSeniority seniority;
protected CouponType couponType;
protected BigDecimal couponRate;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar maturity;
protected BigDecimal parValue;
protected BigDecimal faceAmount;
protected Period paymentFrequency;
protected DayCountFraction dayCountFraction;
/**
* Gets the value of the issuerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIssuerName() {
return issuerName;
}
/**
* Sets the value of the issuerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIssuerName(String value) {
this.issuerName = value;
}
/**
* Gets the value of the issuerPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getIssuerPartyReference() {
return issuerPartyReference;
}
/**
* Sets the value of the issuerPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setIssuerPartyReference(PartyReference value) {
this.issuerPartyReference = value;
}
/**
* Gets the value of the seniority property.
*
* @return
* possible object is
* {@link CreditSeniority }
*
*/
public CreditSeniority getSeniority() {
return seniority;
}
/**
* Sets the value of the seniority property.
*
* @param value
* allowed object is
* {@link CreditSeniority }
*
*/
public void setSeniority(CreditSeniority value) {
this.seniority = value;
}
/**
* Gets the value of the couponType property.
*
* @return
* possible object is
* {@link CouponType }
*
*/
public CouponType getCouponType() {
return couponType;
}
/**
* Sets the value of the couponType property.
*
* @param value
* allowed object is
* {@link CouponType }
*
*/
public void setCouponType(CouponType value) {
this.couponType = value;
}
/**
* Gets the value of the couponRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getCouponRate() {
return couponRate;
}
/**
* Sets the value of the couponRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setCouponRate(BigDecimal value) {
this.couponRate = value;
}
/**
* Gets the value of the maturity property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMaturity() {
return maturity;
}
/**
* Sets the value of the maturity property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMaturity(XMLGregorianCalendar value) {
this.maturity = value;
}
/**
* Gets the value of the parValue property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getParValue() {
return parValue;
}
/**
* Sets the value of the parValue property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setParValue(BigDecimal value) {
this.parValue = value;
}
/**
* Gets the value of the faceAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getFaceAmount() {
return faceAmount;
}
/**
* Sets the value of the faceAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setFaceAmount(BigDecimal value) {
this.faceAmount = 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;
}
/**
* Gets the value of the dayCountFraction property.
*
* @return
* possible object is
* {@link DayCountFraction }
*
*/
public DayCountFraction getDayCountFraction() {
return dayCountFraction;
}
/**
* Sets the value of the dayCountFraction property.
*
* @param value
* allowed object is
* {@link DayCountFraction }
*
*/
public void setDayCountFraction(DayCountFraction value) {
this.dayCountFraction = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy