All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.product.xml.CreditEventNoticeDocument Maven / Gradle / Ivy

//
// 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.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * An event type that records the occurrence of a credit event notice.
 *             
 * 
 * 

Java class for CreditEventNoticeDocument complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CreditEventNoticeDocument">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="affectedTransactions" type="{http://www.fpml.org/FpML-5/confirmation}AffectedTransactions" minOccurs="0"/>
 *         <element name="referenceEntity" type="{http://www.fpml.org/FpML-5/confirmation}LegalEntity"/>
 *         <element ref="{http://www.fpml.org/FpML-5/confirmation}creditEvent"/>
 *         <element name="publiclyAvailableInformation" type="{http://www.fpml.org/FpML-5/confirmation}Resource" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="notifyingPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference"/>
 *         <element name="notifiedPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference"/>
 *         <element name="creditEventNoticeDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="creditEventDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CreditEventNoticeDocument", propOrder = { "affectedTransactions", "referenceEntity", "creditEvent", "publiclyAvailableInformation", "notifyingPartyReference", "notifiedPartyReference", "creditEventNoticeDate", "creditEventDate" }) public class CreditEventNoticeDocument { protected AffectedTransactions affectedTransactions; @XmlElement(required = true) protected LegalEntity referenceEntity; @XmlElementRef(name = "creditEvent", namespace = "http://www.fpml.org/FpML-5/confirmation", type = JAXBElement.class) protected JAXBElement creditEvent; protected List publiclyAvailableInformation; @XmlElement(required = true) protected PartyReference notifyingPartyReference; @XmlElement(required = true) protected PartyReference notifiedPartyReference; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar creditEventNoticeDate; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar creditEventDate; /** * Gets the value of the affectedTransactions property. * * @return * possible object is * {@link AffectedTransactions } * */ public AffectedTransactions getAffectedTransactions() { return affectedTransactions; } /** * Sets the value of the affectedTransactions property. * * @param value * allowed object is * {@link AffectedTransactions } * */ public void setAffectedTransactions(AffectedTransactions value) { this.affectedTransactions = value; } /** * 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 creditEvent property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link RepudiationMoratoriumEvent }{@code >} * {@link JAXBElement }{@code <}{@link FailureToPayEvent }{@code >} * {@link JAXBElement }{@code <}{@link BankruptcyEvent }{@code >} * {@link JAXBElement }{@code <}{@link RestructuringEvent }{@code >} * {@link JAXBElement }{@code <}{@link ObligationDefaultEvent }{@code >} * {@link JAXBElement }{@code <}{@link ObligationAccelerationEvent }{@code >} * {@link JAXBElement }{@code <}{@link CreditEvent }{@code >} * */ public JAXBElement getCreditEvent() { return creditEvent; } /** * Sets the value of the creditEvent property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link RepudiationMoratoriumEvent }{@code >} * {@link JAXBElement }{@code <}{@link FailureToPayEvent }{@code >} * {@link JAXBElement }{@code <}{@link BankruptcyEvent }{@code >} * {@link JAXBElement }{@code <}{@link RestructuringEvent }{@code >} * {@link JAXBElement }{@code <}{@link ObligationDefaultEvent }{@code >} * {@link JAXBElement }{@code <}{@link ObligationAccelerationEvent }{@code >} * {@link JAXBElement }{@code <}{@link CreditEvent }{@code >} * */ public void setCreditEvent(JAXBElement value) { this.creditEvent = value; } /** * Gets the value of the publiclyAvailableInformation 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 publiclyAvailableInformation property. * *

* For example, to add a new item, do as follows: *

     *    getPubliclyAvailableInformation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public List getPubliclyAvailableInformation() { if (publiclyAvailableInformation == null) { publiclyAvailableInformation = new ArrayList(); } return this.publiclyAvailableInformation; } /** * Gets the value of the notifyingPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getNotifyingPartyReference() { return notifyingPartyReference; } /** * Sets the value of the notifyingPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setNotifyingPartyReference(PartyReference value) { this.notifyingPartyReference = value; } /** * Gets the value of the notifiedPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getNotifiedPartyReference() { return notifiedPartyReference; } /** * Sets the value of the notifiedPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setNotifiedPartyReference(PartyReference value) { this.notifiedPartyReference = value; } /** * Gets the value of the creditEventNoticeDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreditEventNoticeDate() { return creditEventNoticeDate; } /** * Sets the value of the creditEventNoticeDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreditEventNoticeDate(XMLGregorianCalendar value) { this.creditEventNoticeDate = value; } /** * Gets the value of the creditEventDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreditEventDate() { return creditEventDate; } /** * Sets the value of the creditEventDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreditEventDate(XMLGregorianCalendar value) { this.creditEventDate = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy