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

energyml.prodml2_0.ProductionOperation Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// 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.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
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;
import energyml.common2_1.AbstractObject;


/**
 * The non-contextual content of a Production Operation object.
 * 
 * 

Java class for ProductionOperation complex type. * *

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

 * <complexType name="ProductionOperation">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractObject">
 *       <sequence>
 *         <element name="ApprovalDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="Approver" type="energyml.prodml2_0.BusinessAssociate" minOccurs="0"/>
 *         <element name="ContextFacility" type="energyml.prodml2_0.FacilityIdentifierStruct" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DateTime" type="energyml.prodml2_0.AbstractDateTimeClass" minOccurs="0"/>
 *         <element name="GeographicContext" type="energyml.prodml2_0.GeographicContext" minOccurs="0"/>
 *         <element name="Installation" type="energyml.prodml2_0.FacilityIdentifierStruct" minOccurs="0"/>
 *         <element name="IssueDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="IssuedBy" type="energyml.prodml2_0.BusinessAssociate" minOccurs="0"/>
 *         <element name="Kind" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Operator" type="energyml.prodml2_0.BusinessAssociate" minOccurs="0"/>
 *         <element name="PeriodKind" type="energyml.prodml2_0.ReportingDurationKind" minOccurs="0"/>
 *         <element name="Title" type="energyml.prodml2_0.NameStruct" minOccurs="0"/>
 *         <element name="InstallationReport" type="energyml.prodml2_0.ProductionOperationInstallationReport" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductionOperation", propOrder = { "approvalDate", "approver", "contextFacility", "dateTime", "geographicContext", "installation", "issueDate", "issuedBy", "kind", "operator", "periodKind", "title", "installationReport" }) public class ProductionOperation extends AbstractObject { @XmlElement(name = "ApprovalDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar approvalDate; @XmlElement(name = "Approver") protected BusinessAssociate approver; @XmlElement(name = "ContextFacility") protected List contextFacility; @XmlElement(name = "DateTime") protected AbstractDateTimeClass dateTime; @XmlElement(name = "GeographicContext") protected GeographicContext geographicContext; @XmlElement(name = "Installation") protected FacilityIdentifierStruct installation; @XmlElement(name = "IssueDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar issueDate; @XmlElement(name = "IssuedBy") protected BusinessAssociate issuedBy; @XmlElement(name = "Kind") protected List kind; @XmlElement(name = "Operator") protected BusinessAssociate operator; @XmlElement(name = "PeriodKind") @XmlSchemaType(name = "string") protected ReportingDurationKind periodKind; @XmlElement(name = "Title") protected NameStruct title; @XmlElement(name = "InstallationReport") protected List installationReport; /** * Gets the value of the approvalDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getApprovalDate() { return approvalDate; } /** * Sets the value of the approvalDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setApprovalDate(XMLGregorianCalendar value) { this.approvalDate = value; } /** * Gets the value of the approver property. * * @return * possible object is * {@link BusinessAssociate } * */ public BusinessAssociate getApprover() { return approver; } /** * Sets the value of the approver property. * * @param value * allowed object is * {@link BusinessAssociate } * */ public void setApprover(BusinessAssociate value) { this.approver = value; } /** * Gets the value of the contextFacility 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 contextFacility property. * *

* For example, to add a new item, do as follows: *

     *    getContextFacility().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FacilityIdentifierStruct } * * */ public List getContextFacility() { if (contextFacility == null) { contextFacility = new ArrayList(); } return this.contextFacility; } /** * Gets the value of the dateTime property. * * @return * possible object is * {@link AbstractDateTimeClass } * */ public AbstractDateTimeClass getDateTime() { return dateTime; } /** * Sets the value of the dateTime property. * * @param value * allowed object is * {@link AbstractDateTimeClass } * */ public void setDateTime(AbstractDateTimeClass value) { this.dateTime = value; } /** * Gets the value of the geographicContext property. * * @return * possible object is * {@link GeographicContext } * */ public GeographicContext getGeographicContext() { return geographicContext; } /** * Sets the value of the geographicContext property. * * @param value * allowed object is * {@link GeographicContext } * */ public void setGeographicContext(GeographicContext value) { this.geographicContext = value; } /** * Gets the value of the installation property. * * @return * possible object is * {@link FacilityIdentifierStruct } * */ public FacilityIdentifierStruct getInstallation() { return installation; } /** * Sets the value of the installation property. * * @param value * allowed object is * {@link FacilityIdentifierStruct } * */ public void setInstallation(FacilityIdentifierStruct value) { this.installation = value; } /** * Gets the value of the issueDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getIssueDate() { return issueDate; } /** * Sets the value of the issueDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setIssueDate(XMLGregorianCalendar value) { this.issueDate = value; } /** * Gets the value of the issuedBy property. * * @return * possible object is * {@link BusinessAssociate } * */ public BusinessAssociate getIssuedBy() { return issuedBy; } /** * Sets the value of the issuedBy property. * * @param value * allowed object is * {@link BusinessAssociate } * */ public void setIssuedBy(BusinessAssociate value) { this.issuedBy = value; } /** * Gets the value of the kind 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 kind property. * *

* For example, to add a new item, do as follows: *

     *    getKind().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getKind() { if (kind == null) { kind = new ArrayList(); } return this.kind; } /** * Gets the value of the operator property. * * @return * possible object is * {@link BusinessAssociate } * */ public BusinessAssociate getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link BusinessAssociate } * */ public void setOperator(BusinessAssociate value) { this.operator = value; } /** * Gets the value of the periodKind property. * * @return * possible object is * {@link ReportingDurationKind } * */ public ReportingDurationKind getPeriodKind() { return periodKind; } /** * Sets the value of the periodKind property. * * @param value * allowed object is * {@link ReportingDurationKind } * */ public void setPeriodKind(ReportingDurationKind value) { this.periodKind = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link NameStruct } * */ public NameStruct getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link NameStruct } * */ public void setTitle(NameStruct value) { this.title = value; } /** * Gets the value of the installationReport 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 installationReport property. * *

* For example, to add a new item, do as follows: *

     *    getInstallationReport().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ProductionOperationInstallationReport } * * */ public List getInstallationReport() { if (installationReport == null) { installationReport = new ArrayList(); } return this.installationReport; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy