energyml.prodml2_0.ProductVolumeBalanceSet Maven / Gradle / Ivy
Show all versions of energyml-prodml20 Show documentation
//
// 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: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Product Flow Balance Set Schema.
*
* Java class for ProductVolumeBalanceSet complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProductVolumeBalanceSet">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CargoBatchNumber" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* <element name="CargoNumber" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Shipper" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Kind" type="energyml.prodml2_0.BalanceFlowPart" minOccurs="0"/>
* <element name="BalanceDetail" type="energyml.prodml2_0.ProductVolumeBalanceDetail" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Destination" type="energyml.prodml2_0.ProductVolumeDestination" minOccurs="0"/>
* </sequence>
* <attribute name="uid" use="required" type="energyml.common2_1.String64" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProductVolumeBalanceSet", propOrder = {
"cargoBatchNumber",
"cargoNumber",
"shipper",
"kind",
"balanceDetail",
"destination"
})
public class ProductVolumeBalanceSet {
@XmlElement(name = "CargoBatchNumber")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger cargoBatchNumber;
@XmlElement(name = "CargoNumber")
protected List cargoNumber;
@XmlElement(name = "Shipper")
protected List shipper;
@XmlElement(name = "Kind")
@XmlSchemaType(name = "string")
protected BalanceFlowPart kind;
@XmlElement(name = "BalanceDetail")
protected List balanceDetail;
@XmlElement(name = "Destination")
protected ProductVolumeDestination destination;
@XmlAttribute(name = "uid", required = true)
protected String uid;
/**
* Gets the value of the cargoBatchNumber property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCargoBatchNumber() {
return cargoBatchNumber;
}
/**
* Sets the value of the cargoBatchNumber property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCargoBatchNumber(BigInteger value) {
this.cargoBatchNumber = value;
}
/**
* Gets the value of the cargoNumber property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the cargoNumber property.
*
*
* For example, to add a new item, do as follows:
*
* getCargoNumber().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getCargoNumber() {
if (cargoNumber == null) {
cargoNumber = new ArrayList();
}
return this.cargoNumber;
}
/**
* Gets the value of the shipper property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the shipper property.
*
*
* For example, to add a new item, do as follows:
*
* getShipper().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getShipper() {
if (shipper == null) {
shipper = new ArrayList();
}
return this.shipper;
}
/**
* Gets the value of the kind property.
*
* @return
* possible object is
* {@link BalanceFlowPart }
*
*/
public BalanceFlowPart getKind() {
return kind;
}
/**
* Sets the value of the kind property.
*
* @param value
* allowed object is
* {@link BalanceFlowPart }
*
*/
public void setKind(BalanceFlowPart value) {
this.kind = value;
}
/**
* Gets the value of the balanceDetail property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the balanceDetail property.
*
*
* For example, to add a new item, do as follows:
*
* getBalanceDetail().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProductVolumeBalanceDetail }
*
*
*/
public List getBalanceDetail() {
if (balanceDetail == null) {
balanceDetail = new ArrayList();
}
return this.balanceDetail;
}
/**
* Gets the value of the destination property.
*
* @return
* possible object is
* {@link ProductVolumeDestination }
*
*/
public ProductVolumeDestination getDestination() {
return destination;
}
/**
* Sets the value of the destination property.
*
* @param value
* allowed object is
* {@link ProductVolumeDestination }
*
*/
public void setDestination(ProductVolumeDestination value) {
this.destination = value;
}
/**
* Gets the value of the uid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUid(String value) {
this.uid = value;
}
}