net.finmath.smartcontract.product.xml.CreditEvents 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for CreditEvents complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreditEvents">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="failureToPay" type="{http://www.fpml.org/FpML-5/confirmation}FailureToPay" minOccurs="0"/>
* <element name="failureToPayPrincipal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="failureToPayInterest" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="obligationDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="obligationAcceleration" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="repudiationMoratorium" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="restructuring" type="{http://www.fpml.org/FpML-5/confirmation}Restructuring" minOccurs="0"/>
* <element name="governmentalIntervention" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="distressedRatingsDowngrade" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="maturityExtension" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="writedown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="impliedWritedown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="defaultRequirement" type="{http://www.fpml.org/FpML-5/confirmation}Money" minOccurs="0"/>
* <element name="creditEventNotice" type="{http://www.fpml.org/FpML-5/confirmation}CreditEventNotice" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreditEvents", propOrder = {
"bankruptcy",
"failureToPay",
"failureToPayPrincipal",
"failureToPayInterest",
"obligationDefault",
"obligationAcceleration",
"repudiationMoratorium",
"restructuring",
"governmentalIntervention",
"distressedRatingsDowngrade",
"maturityExtension",
"writedown",
"impliedWritedown",
"defaultRequirement",
"creditEventNotice"
})
public class CreditEvents {
protected Boolean bankruptcy;
protected FailureToPay failureToPay;
protected Boolean failureToPayPrincipal;
protected Boolean failureToPayInterest;
protected Boolean obligationDefault;
protected Boolean obligationAcceleration;
protected Boolean repudiationMoratorium;
protected Restructuring restructuring;
protected Boolean governmentalIntervention;
protected Boolean distressedRatingsDowngrade;
protected Boolean maturityExtension;
protected Boolean writedown;
protected Boolean impliedWritedown;
protected Money defaultRequirement;
protected CreditEventNotice creditEventNotice;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the bankruptcy property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBankruptcy() {
return bankruptcy;
}
/**
* Sets the value of the bankruptcy property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBankruptcy(Boolean value) {
this.bankruptcy = value;
}
/**
* Gets the value of the failureToPay property.
*
* @return
* possible object is
* {@link FailureToPay }
*
*/
public FailureToPay getFailureToPay() {
return failureToPay;
}
/**
* Sets the value of the failureToPay property.
*
* @param value
* allowed object is
* {@link FailureToPay }
*
*/
public void setFailureToPay(FailureToPay value) {
this.failureToPay = value;
}
/**
* Gets the value of the failureToPayPrincipal property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFailureToPayPrincipal() {
return failureToPayPrincipal;
}
/**
* Sets the value of the failureToPayPrincipal property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFailureToPayPrincipal(Boolean value) {
this.failureToPayPrincipal = value;
}
/**
* Gets the value of the failureToPayInterest property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFailureToPayInterest() {
return failureToPayInterest;
}
/**
* Sets the value of the failureToPayInterest property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFailureToPayInterest(Boolean value) {
this.failureToPayInterest = value;
}
/**
* Gets the value of the obligationDefault property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isObligationDefault() {
return obligationDefault;
}
/**
* Sets the value of the obligationDefault property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setObligationDefault(Boolean value) {
this.obligationDefault = value;
}
/**
* Gets the value of the obligationAcceleration property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isObligationAcceleration() {
return obligationAcceleration;
}
/**
* Sets the value of the obligationAcceleration property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setObligationAcceleration(Boolean value) {
this.obligationAcceleration = value;
}
/**
* Gets the value of the repudiationMoratorium property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRepudiationMoratorium() {
return repudiationMoratorium;
}
/**
* Sets the value of the repudiationMoratorium property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRepudiationMoratorium(Boolean value) {
this.repudiationMoratorium = value;
}
/**
* Gets the value of the restructuring property.
*
* @return
* possible object is
* {@link Restructuring }
*
*/
public Restructuring getRestructuring() {
return restructuring;
}
/**
* Sets the value of the restructuring property.
*
* @param value
* allowed object is
* {@link Restructuring }
*
*/
public void setRestructuring(Restructuring value) {
this.restructuring = value;
}
/**
* Gets the value of the governmentalIntervention property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGovernmentalIntervention() {
return governmentalIntervention;
}
/**
* Sets the value of the governmentalIntervention property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGovernmentalIntervention(Boolean value) {
this.governmentalIntervention = value;
}
/**
* Gets the value of the distressedRatingsDowngrade property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDistressedRatingsDowngrade() {
return distressedRatingsDowngrade;
}
/**
* Sets the value of the distressedRatingsDowngrade property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDistressedRatingsDowngrade(Boolean value) {
this.distressedRatingsDowngrade = value;
}
/**
* Gets the value of the maturityExtension property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMaturityExtension() {
return maturityExtension;
}
/**
* Sets the value of the maturityExtension property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMaturityExtension(Boolean value) {
this.maturityExtension = value;
}
/**
* Gets the value of the writedown property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isWritedown() {
return writedown;
}
/**
* Sets the value of the writedown property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setWritedown(Boolean value) {
this.writedown = value;
}
/**
* Gets the value of the impliedWritedown property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isImpliedWritedown() {
return impliedWritedown;
}
/**
* Sets the value of the impliedWritedown property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setImpliedWritedown(Boolean value) {
this.impliedWritedown = value;
}
/**
* Gets the value of the defaultRequirement property.
*
* @return
* possible object is
* {@link Money }
*
*/
public Money getDefaultRequirement() {
return defaultRequirement;
}
/**
* Sets the value of the defaultRequirement property.
*
* @param value
* allowed object is
* {@link Money }
*
*/
public void setDefaultRequirement(Money value) {
this.defaultRequirement = value;
}
/**
* Gets the value of the creditEventNotice property.
*
* @return
* possible object is
* {@link CreditEventNotice }
*
*/
public CreditEventNotice getCreditEventNotice() {
return creditEventNotice;
}
/**
* Sets the value of the creditEventNotice property.
*
* @param value
* allowed object is
* {@link CreditEventNotice }
*
*/
public void setCreditEventNotice(CreditEventNotice value) {
this.creditEventNotice = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy