org.fpml.fpml_5.confirmation.InformationSource Maven / Gradle / Ivy
//
// 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.05.10 at 03:58:40 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* A type defining the source for a piece of information (e.g. a rate refix or an fx fixing).
*
* Java class for InformationSource complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InformationSource">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="rateSource" type="{http://www.fpml.org/FpML-5/confirmation}InformationProvider"/>
* <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 = "InformationSource", propOrder = {
"rateSource",
"rateSourcePage",
"rateSourcePageHeading"
})
@XmlSeeAlso({
FxInformationSource.class
})
public class InformationSource {
@XmlElement(required = true)
protected InformationProvider rateSource;
protected RateSourcePage rateSourcePage;
protected String rateSourcePageHeading;
/**
* Gets the value of the rateSource property.
*
* @return
* possible object is
* {@link InformationProvider }
*
*/
public InformationProvider getRateSource() {
return rateSource;
}
/**
* Sets the value of the rateSource property.
*
* @param value
* allowed object is
* {@link InformationProvider }
*
*/
public void setRateSource(InformationProvider 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