org.fpml.fpml_5.confirmation.MetalDelivery 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.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* The physical delivery conditions for the transaction.
*
* Java class for MetalDelivery complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MetalDelivery">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="deliveryLocation" type="{http://www.fpml.org/FpML-5/confirmation}CommodityDeliveryPoint"/>
* <element name="risk" type="{http://www.fpml.org/FpML-5/confirmation}CommodityDeliveryRisk" minOccurs="0"/>
* <element name="totalQuantityTolerance" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="periodQuantityTolerance" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="title" type="{http://www.fpml.org/FpML-5/confirmation}MetalTitleEnum"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MetalDelivery", propOrder = {
"deliveryLocation",
"risk",
"totalQuantityTolerance",
"periodQuantityTolerance",
"title"
})
public class MetalDelivery {
@XmlElement(required = true)
protected CommodityDeliveryPoint deliveryLocation;
protected CommodityDeliveryRisk risk;
@XmlElement(required = true)
protected BigDecimal totalQuantityTolerance;
@XmlElement(required = true)
protected BigDecimal periodQuantityTolerance;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected MetalTitleEnum title;
/**
* Gets the value of the deliveryLocation property.
*
* @return
* possible object is
* {@link CommodityDeliveryPoint }
*
*/
public CommodityDeliveryPoint getDeliveryLocation() {
return deliveryLocation;
}
/**
* Sets the value of the deliveryLocation property.
*
* @param value
* allowed object is
* {@link CommodityDeliveryPoint }
*
*/
public void setDeliveryLocation(CommodityDeliveryPoint value) {
this.deliveryLocation = value;
}
/**
* Gets the value of the risk property.
*
* @return
* possible object is
* {@link CommodityDeliveryRisk }
*
*/
public CommodityDeliveryRisk getRisk() {
return risk;
}
/**
* Sets the value of the risk property.
*
* @param value
* allowed object is
* {@link CommodityDeliveryRisk }
*
*/
public void setRisk(CommodityDeliveryRisk value) {
this.risk = value;
}
/**
* Gets the value of the totalQuantityTolerance property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getTotalQuantityTolerance() {
return totalQuantityTolerance;
}
/**
* Sets the value of the totalQuantityTolerance property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setTotalQuantityTolerance(BigDecimal value) {
this.totalQuantityTolerance = value;
}
/**
* Gets the value of the periodQuantityTolerance property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPeriodQuantityTolerance() {
return periodQuantityTolerance;
}
/**
* Sets the value of the periodQuantityTolerance property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPeriodQuantityTolerance(BigDecimal value) {
this.periodQuantityTolerance = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link MetalTitleEnum }
*
*/
public MetalTitleEnum getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link MetalTitleEnum }
*
*/
public void setTitle(MetalTitleEnum value) {
this.title = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy