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

org.fpml.fpml_5.confirmation.PricingStructureValuation Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.61
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.04.04 at 04:56:21 PM UTC 
//


package org.fpml.fpml_5.confirmation;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * An abstract pricing structure valuation base type. Used as a base for values of pricing structures such as yield curves and volatility matrices. Derived from the "Valuation" type.
 * 
 * 

Java class for PricingStructureValuation complex type. * *

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

 * <complexType name="PricingStructureValuation">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}Valuation">
 *       <sequence>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}PricingInputDates.model"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PricingStructureValuation", propOrder = { "baseDate", "spotDate", "inputDataDate", "endDate", "buildDateTime" }) @XmlSeeAlso({ CreditCurveValuation.class, FxCurveValuation.class, VolatilityMatrix.class, YieldCurveValuation.class, DefaultProbabilityCurve.class }) public class PricingStructureValuation extends Valuation { @XmlElement(required = true) protected IdentifiedDate baseDate; protected IdentifiedDate spotDate; protected IdentifiedDate inputDataDate; protected IdentifiedDate endDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar buildDateTime; /** * Gets the value of the baseDate property. * * @return * possible object is * {@link IdentifiedDate } * */ public IdentifiedDate getBaseDate() { return baseDate; } /** * Sets the value of the baseDate property. * * @param value * allowed object is * {@link IdentifiedDate } * */ public void setBaseDate(IdentifiedDate value) { this.baseDate = value; } /** * Gets the value of the spotDate property. * * @return * possible object is * {@link IdentifiedDate } * */ public IdentifiedDate getSpotDate() { return spotDate; } /** * Sets the value of the spotDate property. * * @param value * allowed object is * {@link IdentifiedDate } * */ public void setSpotDate(IdentifiedDate value) { this.spotDate = value; } /** * Gets the value of the inputDataDate property. * * @return * possible object is * {@link IdentifiedDate } * */ public IdentifiedDate getInputDataDate() { return inputDataDate; } /** * Sets the value of the inputDataDate property. * * @param value * allowed object is * {@link IdentifiedDate } * */ public void setInputDataDate(IdentifiedDate value) { this.inputDataDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link IdentifiedDate } * */ public IdentifiedDate getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link IdentifiedDate } * */ public void setEndDate(IdentifiedDate value) { this.endDate = value; } /** * Gets the value of the buildDateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBuildDateTime() { return buildDateTime; } /** * Sets the value of the buildDateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBuildDateTime(XMLGregorianCalendar value) { this.buildDateTime = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy