net.finmath.smartcontract.product.xml.OilDelivery 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.XmlType;
/**
* The physical delivery conditions for an oil product.
*
* Java class for OilDelivery complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OilDelivery">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element name="pipeline" type="{http://www.fpml.org/FpML-5/confirmation}OilPipelineDelivery"/>
* <element name="transfer" type="{http://www.fpml.org/FpML-5/confirmation}OilTransferDelivery"/>
* </choice>
* <element name="importerOfRecord" type="{http://www.fpml.org/FpML-5/confirmation}PartyReference" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="absoluteTolerance" type="{http://www.fpml.org/FpML-5/confirmation}AbsoluteTolerance"/>
* <element name="percentageTolerance" type="{http://www.fpml.org/FpML-5/confirmation}PercentageTolerance"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OilDelivery", propOrder = {
"pipeline",
"transfer",
"importerOfRecord",
"absoluteTolerance",
"percentageTolerance"
})
public class OilDelivery {
protected OilPipelineDelivery pipeline;
protected OilTransferDelivery transfer;
protected PartyReference importerOfRecord;
protected AbsoluteTolerance absoluteTolerance;
protected PercentageTolerance percentageTolerance;
/**
* Gets the value of the pipeline property.
*
* @return
* possible object is
* {@link OilPipelineDelivery }
*
*/
public OilPipelineDelivery getPipeline() {
return pipeline;
}
/**
* Sets the value of the pipeline property.
*
* @param value
* allowed object is
* {@link OilPipelineDelivery }
*
*/
public void setPipeline(OilPipelineDelivery value) {
this.pipeline = value;
}
/**
* Gets the value of the transfer property.
*
* @return
* possible object is
* {@link OilTransferDelivery }
*
*/
public OilTransferDelivery getTransfer() {
return transfer;
}
/**
* Sets the value of the transfer property.
*
* @param value
* allowed object is
* {@link OilTransferDelivery }
*
*/
public void setTransfer(OilTransferDelivery value) {
this.transfer = value;
}
/**
* Gets the value of the importerOfRecord property.
*
* @return
* possible object is
* {@link PartyReference }
*
*/
public PartyReference getImporterOfRecord() {
return importerOfRecord;
}
/**
* Sets the value of the importerOfRecord property.
*
* @param value
* allowed object is
* {@link PartyReference }
*
*/
public void setImporterOfRecord(PartyReference value) {
this.importerOfRecord = value;
}
/**
* Gets the value of the absoluteTolerance property.
*
* @return
* possible object is
* {@link AbsoluteTolerance }
*
*/
public AbsoluteTolerance getAbsoluteTolerance() {
return absoluteTolerance;
}
/**
* Sets the value of the absoluteTolerance property.
*
* @param value
* allowed object is
* {@link AbsoluteTolerance }
*
*/
public void setAbsoluteTolerance(AbsoluteTolerance value) {
this.absoluteTolerance = value;
}
/**
* Gets the value of the percentageTolerance property.
*
* @return
* possible object is
* {@link PercentageTolerance }
*
*/
public PercentageTolerance getPercentageTolerance() {
return percentageTolerance;
}
/**
* Sets the value of the percentageTolerance property.
*
* @param value
* allowed object is
* {@link PercentageTolerance }
*
*/
public void setPercentageTolerance(PercentageTolerance value) {
this.percentageTolerance = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy