net.finmath.smartcontract.product.xml.Valuation 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 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.XmlIDREF;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* A valuation of an valuable object - an asset or a pricing input. This is an
* abstract type, used as a base for values of pricing structures such as yield curves as well as asset
* values.
*
*
* Java class for Valuation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Valuation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="objectReference" type="{http://www.fpml.org/FpML-5/confirmation}AnyAssetReference" minOccurs="0"/>
* <element name="valuationScenarioReference" type="{http://www.fpml.org/FpML-5/confirmation}ValuationScenarioReference" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* <attribute name="definitionRef" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Valuation", propOrder = {
"objectReference",
"valuationScenarioReference"
})
@XmlSeeAlso({
BasicAssetValuation.class,
PricingStructureValuation.class,
AssetValuation.class
})
public class Valuation {
protected AnyAssetReference objectReference;
protected ValuationScenarioReference valuationScenarioReference;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "definitionRef")
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected Object definitionRef;
/**
* Gets the value of the objectReference property.
*
* @return
* possible object is
* {@link AnyAssetReference }
*
*/
public AnyAssetReference getObjectReference() {
return objectReference;
}
/**
* Sets the value of the objectReference property.
*
* @param value
* allowed object is
* {@link AnyAssetReference }
*
*/
public void setObjectReference(AnyAssetReference value) {
this.objectReference = value;
}
/**
* Gets the value of the valuationScenarioReference property.
*
* @return
* possible object is
* {@link ValuationScenarioReference }
*
*/
public ValuationScenarioReference getValuationScenarioReference() {
return valuationScenarioReference;
}
/**
* Sets the value of the valuationScenarioReference property.
*
* @param value
* allowed object is
* {@link ValuationScenarioReference }
*
*/
public void setValuationScenarioReference(ValuationScenarioReference value) {
this.valuationScenarioReference = 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;
}
/**
* Gets the value of the definitionRef property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getDefinitionRef() {
return definitionRef;
}
/**
* Sets the value of the definitionRef property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setDefinitionRef(Object value) {
this.definitionRef = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy