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

org.fpml.fpml_5.confirmation.OilPhysicalLeg 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * Physically settled leg of a physically settled oil product transaction.
 * 
 * 

Java class for OilPhysicalLeg complex type. * *

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

 * <complexType name="OilPhysicalLeg">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}PhysicalSwapLeg">
 *       <sequence>
 *         <element name="deliveryPeriods" type="{http://www.fpml.org/FpML-5/confirmation}CommodityDeliveryPeriods"/>
 *         <element name="oil" type="{http://www.fpml.org/FpML-5/confirmation}OilProduct"/>
 *         <element name="deliveryConditions" type="{http://www.fpml.org/FpML-5/confirmation}OilDelivery"/>
 *         <element name="deliveryQuantity" type="{http://www.fpml.org/FpML-5/confirmation}CommodityPhysicalQuantity"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OilPhysicalLeg", propOrder = { "deliveryPeriods", "oil", "deliveryConditions", "deliveryQuantity" }) public class OilPhysicalLeg extends PhysicalSwapLeg { @XmlElement(required = true) protected CommodityDeliveryPeriods deliveryPeriods; @XmlElement(required = true) protected OilProduct oil; @XmlElement(required = true) protected OilDelivery deliveryConditions; @XmlElement(required = true) protected CommodityPhysicalQuantity deliveryQuantity; /** * Gets the value of the deliveryPeriods property. * * @return * possible object is * {@link CommodityDeliveryPeriods } * */ public CommodityDeliveryPeriods getDeliveryPeriods() { return deliveryPeriods; } /** * Sets the value of the deliveryPeriods property. * * @param value * allowed object is * {@link CommodityDeliveryPeriods } * */ public void setDeliveryPeriods(CommodityDeliveryPeriods value) { this.deliveryPeriods = value; } /** * Gets the value of the oil property. * * @return * possible object is * {@link OilProduct } * */ public OilProduct getOil() { return oil; } /** * Sets the value of the oil property. * * @param value * allowed object is * {@link OilProduct } * */ public void setOil(OilProduct value) { this.oil = value; } /** * Gets the value of the deliveryConditions property. * * @return * possible object is * {@link OilDelivery } * */ public OilDelivery getDeliveryConditions() { return deliveryConditions; } /** * Sets the value of the deliveryConditions property. * * @param value * allowed object is * {@link OilDelivery } * */ public void setDeliveryConditions(OilDelivery value) { this.deliveryConditions = value; } /** * Gets the value of the deliveryQuantity property. * * @return * possible object is * {@link CommodityPhysicalQuantity } * */ public CommodityPhysicalQuantity getDeliveryQuantity() { return deliveryQuantity; } /** * Sets the value of the deliveryQuantity property. * * @param value * allowed object is * {@link CommodityPhysicalQuantity } * */ public void setDeliveryQuantity(CommodityPhysicalQuantity value) { this.deliveryQuantity = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy