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

net.finmath.smartcontract.product.xml.GasPhysicalLeg 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Physically settled leg of a physically settled gas transaction.
 *             
 * 
 * 

Java class for GasPhysicalLeg complex type. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy