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

net.finmath.smartcontract.product.xml.CommodityInformationSource 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type defining the source of a commodity rate, price or index or of a
 *                 market rate or of a conversion factor (e.g. a fx conversion factor).
 *             
 * 
 * 

Java class for CommodityInformationSource complex type. * *

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

 * <complexType name="CommodityInformationSource">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="rateSource" type="{http://www.fpml.org/FpML-5/confirmation}CommodityInformationProvider"/>
 *         <element name="rateSourcePage" type="{http://www.fpml.org/FpML-5/confirmation}RateSourcePage" minOccurs="0"/>
 *         <element name="rateSourcePageHeading" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CommodityInformationSource", propOrder = { "rateSource", "rateSourcePage", "rateSourcePageHeading" }) public class CommodityInformationSource { @XmlElement(required = true) protected CommodityInformationProvider rateSource; protected RateSourcePage rateSourcePage; protected String rateSourcePageHeading; /** * Gets the value of the rateSource property. * * @return * possible object is * {@link CommodityInformationProvider } * */ public CommodityInformationProvider getRateSource() { return rateSource; } /** * Sets the value of the rateSource property. * * @param value * allowed object is * {@link CommodityInformationProvider } * */ public void setRateSource(CommodityInformationProvider value) { this.rateSource = value; } /** * Gets the value of the rateSourcePage property. * * @return * possible object is * {@link RateSourcePage } * */ public RateSourcePage getRateSourcePage() { return rateSourcePage; } /** * Sets the value of the rateSourcePage property. * * @param value * allowed object is * {@link RateSourcePage } * */ public void setRateSourcePage(RateSourcePage value) { this.rateSourcePage = value; } /** * Gets the value of the rateSourcePageHeading property. * * @return * possible object is * {@link String } * */ public String getRateSourcePageHeading() { return rateSourcePageHeading; } /** * Sets the value of the rateSourcePageHeading property. * * @param value * allowed object is * {@link String } * */ public void setRateSourcePageHeading(String value) { this.rateSourcePageHeading = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy