
org.fpml.fpml_5.confirmation.Frequency 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.04.04 at 04:56:21 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* A type defining a time frequency, e.g. one day, three months. Used for specifying payment or calculation frequencies at which the value T (Term) is applicable.
*
* Java class for Frequency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Frequency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="periodMultiplier" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* <element name="period" type="{http://www.fpml.org/FpML-5/confirmation}PeriodExtendedEnum"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Frequency", propOrder = {
"periodMultiplier",
"period"
})
@XmlSeeAlso({
CalculationPeriodFrequency.class,
ResetFrequency.class,
CommodityCalculationPeriodsSchedule.class,
GenericFrequency.class,
GenericResetFrequency.class
})
public class Frequency {
@XmlElement(required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger periodMultiplier;
@XmlElement(required = true)
protected String period;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the periodMultiplier property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPeriodMultiplier() {
return periodMultiplier;
}
/**
* Sets the value of the periodMultiplier property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPeriodMultiplier(BigInteger value) {
this.periodMultiplier = value;
}
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPeriod(String value) {
this.period = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy