net.finmath.smartcontract.product.xml.GasDelivery 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.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* The specification of the gas to be delivered.
*
* Java class for GasDelivery complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GasDelivery">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}CommodityDeliveryPoints.model"/>
* <element name="deliveryType" type="{http://www.fpml.org/FpML-5/confirmation}DeliveryTypeEnum"/>
* <element name="interconnectionPoint" type="{http://www.fpml.org/FpML-5/confirmation}InterconnectionPoint" minOccurs="0"/>
* <sequence minOccurs="0">
* <element name="buyerHub" type="{http://www.fpml.org/FpML-5/confirmation}CommodityHub"/>
* <element name="sellerHub" type="{http://www.fpml.org/FpML-5/confirmation}CommodityHub"/>
* </sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GasDelivery", propOrder = {
"deliveryPoint",
"entryPoint",
"withdrawalPoint",
"deliveryType",
"interconnectionPoint",
"buyerHub",
"sellerHub"
})
public class GasDelivery {
protected GasDeliveryPoint deliveryPoint;
protected CommodityDeliveryPoint entryPoint;
protected CommodityDeliveryPoint withdrawalPoint;
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected DeliveryTypeEnum deliveryType;
protected InterconnectionPoint interconnectionPoint;
protected CommodityHub buyerHub;
protected CommodityHub sellerHub;
/**
* Gets the value of the deliveryPoint property.
*
* @return
* possible object is
* {@link GasDeliveryPoint }
*
*/
public GasDeliveryPoint getDeliveryPoint() {
return deliveryPoint;
}
/**
* Sets the value of the deliveryPoint property.
*
* @param value
* allowed object is
* {@link GasDeliveryPoint }
*
*/
public void setDeliveryPoint(GasDeliveryPoint value) {
this.deliveryPoint = value;
}
/**
* Gets the value of the entryPoint property.
*
* @return
* possible object is
* {@link CommodityDeliveryPoint }
*
*/
public CommodityDeliveryPoint getEntryPoint() {
return entryPoint;
}
/**
* Sets the value of the entryPoint property.
*
* @param value
* allowed object is
* {@link CommodityDeliveryPoint }
*
*/
public void setEntryPoint(CommodityDeliveryPoint value) {
this.entryPoint = value;
}
/**
* Gets the value of the withdrawalPoint property.
*
* @return
* possible object is
* {@link CommodityDeliveryPoint }
*
*/
public CommodityDeliveryPoint getWithdrawalPoint() {
return withdrawalPoint;
}
/**
* Sets the value of the withdrawalPoint property.
*
* @param value
* allowed object is
* {@link CommodityDeliveryPoint }
*
*/
public void setWithdrawalPoint(CommodityDeliveryPoint value) {
this.withdrawalPoint = value;
}
/**
* Gets the value of the deliveryType property.
*
* @return
* possible object is
* {@link DeliveryTypeEnum }
*
*/
public DeliveryTypeEnum getDeliveryType() {
return deliveryType;
}
/**
* Sets the value of the deliveryType property.
*
* @param value
* allowed object is
* {@link DeliveryTypeEnum }
*
*/
public void setDeliveryType(DeliveryTypeEnum value) {
this.deliveryType = value;
}
/**
* Gets the value of the interconnectionPoint property.
*
* @return
* possible object is
* {@link InterconnectionPoint }
*
*/
public InterconnectionPoint getInterconnectionPoint() {
return interconnectionPoint;
}
/**
* Sets the value of the interconnectionPoint property.
*
* @param value
* allowed object is
* {@link InterconnectionPoint }
*
*/
public void setInterconnectionPoint(InterconnectionPoint value) {
this.interconnectionPoint = value;
}
/**
* Gets the value of the buyerHub property.
*
* @return
* possible object is
* {@link CommodityHub }
*
*/
public CommodityHub getBuyerHub() {
return buyerHub;
}
/**
* Sets the value of the buyerHub property.
*
* @param value
* allowed object is
* {@link CommodityHub }
*
*/
public void setBuyerHub(CommodityHub value) {
this.buyerHub = value;
}
/**
* Gets the value of the sellerHub property.
*
* @return
* possible object is
* {@link CommodityHub }
*
*/
public CommodityHub getSellerHub() {
return sellerHub;
}
/**
* Sets the value of the sellerHub property.
*
* @param value
* allowed object is
* {@link CommodityHub }
*
*/
public void setSellerHub(CommodityHub value) {
this.sellerHub = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy