net.finmath.smartcontract.product.xml.ProtectionTerms 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for ProtectionTerms complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProtectionTerms">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="calculationAmount" type="{http://www.fpml.org/FpML-5/confirmation}Money"/>
* <element name="creditEvents" type="{http://www.fpml.org/FpML-5/confirmation}CreditEvents" minOccurs="0"/>
* <element name="obligations" type="{http://www.fpml.org/FpML-5/confirmation}Obligations" minOccurs="0"/>
* <element name="floatingAmountEvents" type="{http://www.fpml.org/FpML-5/confirmation}FloatingAmountEvents" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProtectionTerms", propOrder = {
"calculationAmount",
"creditEvents",
"obligations",
"floatingAmountEvents"
})
public class ProtectionTerms {
@XmlElement(required = true)
protected Money calculationAmount;
protected CreditEvents creditEvents;
protected Obligations obligations;
protected FloatingAmountEvents floatingAmountEvents;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the calculationAmount property.
*
* @return
* possible object is
* {@link Money }
*
*/
public Money getCalculationAmount() {
return calculationAmount;
}
/**
* Sets the value of the calculationAmount property.
*
* @param value
* allowed object is
* {@link Money }
*
*/
public void setCalculationAmount(Money value) {
this.calculationAmount = value;
}
/**
* Gets the value of the creditEvents property.
*
* @return
* possible object is
* {@link CreditEvents }
*
*/
public CreditEvents getCreditEvents() {
return creditEvents;
}
/**
* Sets the value of the creditEvents property.
*
* @param value
* allowed object is
* {@link CreditEvents }
*
*/
public void setCreditEvents(CreditEvents value) {
this.creditEvents = value;
}
/**
* Gets the value of the obligations property.
*
* @return
* possible object is
* {@link Obligations }
*
*/
public Obligations getObligations() {
return obligations;
}
/**
* Sets the value of the obligations property.
*
* @param value
* allowed object is
* {@link Obligations }
*
*/
public void setObligations(Obligations value) {
this.obligations = value;
}
/**
* Gets the value of the floatingAmountEvents property.
*
* @return
* possible object is
* {@link FloatingAmountEvents }
*
*/
public FloatingAmountEvents getFloatingAmountEvents() {
return floatingAmountEvents;
}
/**
* Sets the value of the floatingAmountEvents property.
*
* @param value
* allowed object is
* {@link FloatingAmountEvents }
*
*/
public void setFloatingAmountEvents(FloatingAmountEvents value) {
this.floatingAmountEvents = 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