net.finmath.smartcontract.product.xml.GenericFrequency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
//
// 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.XmlType;
/**
* Java class for GenericFrequency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GenericFrequency">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}Frequency">
* <choice minOccurs="0">
* <element name="payerPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference"/>
* <element name="underlyerReference" type="{http://www.fpml.org/FpML-5/confirmation}UnderlyerReference"/>
* </choice>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenericFrequency", propOrder = {
"payerPartyReference",
"underlyerReference"
})
public class GenericFrequency
extends Frequency
{
protected PartyReference payerPartyReference;
protected UnderlyerReference underlyerReference;
/**
* Gets the value of the payerPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getPayerPartyReference() {
return payerPartyReference;
}
/**
* Sets the value of the payerPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setPayerPartyReference(PartyReference value) {
this.payerPartyReference = value;
}
/**
* Gets the value of the underlyerReference property.
*
* @return
* possible object is
* {@link UnderlyerReference }
*
*/
public UnderlyerReference getUnderlyerReference() {
return underlyerReference;
}
/**
* Sets the value of the underlyerReference property.
*
* @param value
* allowed object is
* {@link UnderlyerReference }
*
*/
public void setUnderlyerReference(UnderlyerReference value) {
this.underlyerReference = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy