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

net.finmath.smartcontract.product.xml.MasterConfirmation 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 javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * An entity for defining the master confirmation agreement executed between
 *                 the parties.
 *             
 * 
 * 

Java class for MasterConfirmation complex type. * *

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

 * <complexType name="MasterConfirmation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="masterConfirmationType" type="{http://www.fpml.org/FpML-5/confirmation}MasterConfirmationType"/>
 *         <element name="masterConfirmationDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="masterConfirmationAnnexDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="masterConfirmationAnnexType" type="{http://www.fpml.org/FpML-5/confirmation}MasterConfirmationAnnexType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MasterConfirmation", propOrder = { "masterConfirmationType", "masterConfirmationDate", "masterConfirmationAnnexDate", "masterConfirmationAnnexType" }) public class MasterConfirmation { @XmlElement(required = true) protected MasterConfirmationType masterConfirmationType; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar masterConfirmationDate; @XmlSchemaType(name = "date") protected XMLGregorianCalendar masterConfirmationAnnexDate; protected MasterConfirmationAnnexType masterConfirmationAnnexType; /** * Gets the value of the masterConfirmationType property. * * @return * possible object is * {@link MasterConfirmationType } * */ public MasterConfirmationType getMasterConfirmationType() { return masterConfirmationType; } /** * Sets the value of the masterConfirmationType property. * * @param value * allowed object is * {@link MasterConfirmationType } * */ public void setMasterConfirmationType(MasterConfirmationType value) { this.masterConfirmationType = value; } /** * Gets the value of the masterConfirmationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMasterConfirmationDate() { return masterConfirmationDate; } /** * Sets the value of the masterConfirmationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMasterConfirmationDate(XMLGregorianCalendar value) { this.masterConfirmationDate = value; } /** * Gets the value of the masterConfirmationAnnexDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMasterConfirmationAnnexDate() { return masterConfirmationAnnexDate; } /** * Sets the value of the masterConfirmationAnnexDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMasterConfirmationAnnexDate(XMLGregorianCalendar value) { this.masterConfirmationAnnexDate = value; } /** * Gets the value of the masterConfirmationAnnexType property. * * @return * possible object is * {@link MasterConfirmationAnnexType } * */ public MasterConfirmationAnnexType getMasterConfirmationAnnexType() { return masterConfirmationAnnexType; } /** * Sets the value of the masterConfirmationAnnexType property. * * @param value * allowed object is * {@link MasterConfirmationAnnexType } * */ public void setMasterConfirmationAnnexType(MasterConfirmationAnnexType value) { this.masterConfirmationAnnexType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy