org.fpml.fpml_5.confirmation.SimpleFra Maven / Gradle / Ivy
The 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.07.26 at 10:31:12 AM 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.XmlType;
/**
* Java class for SimpleFra complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SimpleFra">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}UnderlyingAsset">
* <sequence>
* <element name="startTerm" type="{http://www.fpml.org/FpML-5/confirmation}Period"/>
* <element name="endTerm" type="{http://www.fpml.org/FpML-5/confirmation}Period"/>
* <element name="dayCountFraction" type="{http://www.fpml.org/FpML-5/confirmation}DayCountFraction" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SimpleFra", propOrder = {
"startTerm",
"endTerm",
"dayCountFraction"
})
public class SimpleFra
extends UnderlyingAsset
{
@XmlElement(required = true)
protected Period startTerm;
@XmlElement(required = true)
protected Period endTerm;
protected DayCountFraction dayCountFraction;
/**
* Gets the value of the startTerm property.
*
* @return
* possible object is
* {@link Period }
*
*/
public Period getStartTerm() {
return startTerm;
}
/**
* Sets the value of the startTerm property.
*
* @param value
* allowed object is
* {@link Period }
*
*/
public void setStartTerm(Period value) {
this.startTerm = value;
}
/**
* Gets the value of the endTerm property.
*
* @return
* possible object is
* {@link Period }
*
*/
public Period getEndTerm() {
return endTerm;
}
/**
* Sets the value of the endTerm property.
*
* @param value
* allowed object is
* {@link Period }
*
*/
public void setEndTerm(Period value) {
this.endTerm = value;
}
/**
* Gets the value of the dayCountFraction property.
*
* @return
* possible object is
* {@link DayCountFraction }
*
*/
public DayCountFraction getDayCountFraction() {
return dayCountFraction;
}
/**
* Sets the value of the dayCountFraction property.
*
* @param value
* allowed object is
* {@link DayCountFraction }
*
*/
public void setDayCountFraction(DayCountFraction value) {
this.dayCountFraction = value;
}
}