net.finmath.smartcontract.product.xml.ElectricityDelivery 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.XmlType;
/**
* The physical delivery conditions for electricity.
*
* Java class for ElectricityDelivery complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ElectricityDelivery">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <sequence>
* <element name="deliveryPoint" type="{http://www.fpml.org/FpML-5/confirmation}ElectricityDeliveryPoint"/>
* <element name="deliveryType" type="{http://www.fpml.org/FpML-5/confirmation}ElectricityDeliveryType" minOccurs="0"/>
* <element name="transmissionContingency" type="{http://www.fpml.org/FpML-5/confirmation}ElectricityTransmissionContingency" minOccurs="0"/>
* <element name="interconnectionPoint" type="{http://www.fpml.org/FpML-5/confirmation}InterconnectionPoint" minOccurs="0"/>
* </sequence>
* <sequence>
* <element name="deliveryZone" type="{http://www.fpml.org/FpML-5/confirmation}CommodityDeliveryPoint"/>
* <element name="electingPartyReference" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" minOccurs="0"/>
* </sequence>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElectricityDelivery", propOrder = {
"deliveryPoint",
"deliveryType",
"transmissionContingency",
"interconnectionPoint",
"deliveryZone",
"electingPartyReference"
})
public class ElectricityDelivery {
protected ElectricityDeliveryPoint deliveryPoint;
protected ElectricityDeliveryType deliveryType;
protected ElectricityTransmissionContingency transmissionContingency;
protected InterconnectionPoint interconnectionPoint;
protected CommodityDeliveryPoint deliveryZone;
protected PartyReference electingPartyReference;
/**
* Gets the value of the deliveryPoint property.
*
* @return
* possible object is
* {@link ElectricityDeliveryPoint }
*
*/
public ElectricityDeliveryPoint getDeliveryPoint() {
return deliveryPoint;
}
/**
* Sets the value of the deliveryPoint property.
*
* @param value
* allowed object is
* {@link ElectricityDeliveryPoint }
*
*/
public void setDeliveryPoint(ElectricityDeliveryPoint value) {
this.deliveryPoint = value;
}
/**
* Gets the value of the deliveryType property.
*
* @return
* possible object is
* {@link ElectricityDeliveryType }
*
*/
public ElectricityDeliveryType getDeliveryType() {
return deliveryType;
}
/**
* Sets the value of the deliveryType property.
*
* @param value
* allowed object is
* {@link ElectricityDeliveryType }
*
*/
public void setDeliveryType(ElectricityDeliveryType value) {
this.deliveryType = value;
}
/**
* Gets the value of the transmissionContingency property.
*
* @return
* possible object is
* {@link ElectricityTransmissionContingency }
*
*/
public ElectricityTransmissionContingency getTransmissionContingency() {
return transmissionContingency;
}
/**
* Sets the value of the transmissionContingency property.
*
* @param value
* allowed object is
* {@link ElectricityTransmissionContingency }
*
*/
public void setTransmissionContingency(ElectricityTransmissionContingency value) {
this.transmissionContingency = 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 deliveryZone property.
*
* @return
* possible object is
* {@link CommodityDeliveryPoint }
*
*/
public CommodityDeliveryPoint getDeliveryZone() {
return deliveryZone;
}
/**
* Sets the value of the deliveryZone property.
*
* @param value
* allowed object is
* {@link CommodityDeliveryPoint }
*
*/
public void setDeliveryZone(CommodityDeliveryPoint value) {
this.deliveryZone = value;
}
/**
* Gets the value of the electingPartyReference property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getElectingPartyReference() {
return electingPartyReference;
}
/**
* Sets the value of the electingPartyReference property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setElectingPartyReference(PartyReference value) {
this.electingPartyReference = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy