net.finmath.smartcontract.product.xml.PricingStructureValuation 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.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* 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