All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.product.xml.AbsoluteTolerance Maven / Gradle / Ivy

//
// 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 java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * The acceptable tolerance in the delivered quantity of a physical commodity
 *                 product in terms of a number of units of that product.
 *             
 * 
 * 

Java class for AbsoluteTolerance complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AbsoluteTolerance">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="positive" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="negative" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="unit" type="{http://www.fpml.org/FpML-5/confirmation}QuantityUnit"/>
 *         <element name="optionOwnerPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbsoluteTolerance", propOrder = { "positive", "negative", "unit", "optionOwnerPartyReference" }) public class AbsoluteTolerance { @XmlElement(required = true) protected BigDecimal positive; @XmlElement(required = true) protected BigDecimal negative; @XmlElement(required = true) protected QuantityUnit unit; protected PartyReference optionOwnerPartyReference; /** * Gets the value of the positive property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPositive() { return positive; } /** * Sets the value of the positive property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPositive(BigDecimal value) { this.positive = value; } /** * Gets the value of the negative property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getNegative() { return negative; } /** * Sets the value of the negative property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setNegative(BigDecimal value) { this.negative = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link QuantityUnit } * */ public QuantityUnit getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link QuantityUnit } * */ public void setUnit(QuantityUnit value) { this.unit = value; } /** * Gets the value of the optionOwnerPartyReference property. * * @return * possible object is * {@link PartyReference } * */ public PartyReference getOptionOwnerPartyReference() { return optionOwnerPartyReference; } /** * Sets the value of the optionOwnerPartyReference property. * * @param value * allowed object is * {@link PartyReference } * */ public void setOptionOwnerPartyReference(PartyReference value) { this.optionOwnerPartyReference = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy