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

com.farao_community.farao.cse.data.xsd.ntc2.CapacityDocument Maven / Gradle / Ivy

There is a newer version: 1.38.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.10.29 at 10:09:23 AM UTC 
//


package com.farao_community.farao.cse.data.xsd.ntc2;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DocumentIdentification" type="{etso-core-cmpts.xsd}IdentificationType"/>
 *         <element name="DocumentVersion" type="{etso-core-cmpts.xsd}VersionType"/>
 *         <element name="DocumentType" type="{etso-core-cmpts.xsd}MessageType"/>
 *         <element name="ProcessType" type="{etso-core-cmpts.xsd}ProcessType"/>
 *         <element name="SenderIdentification" type="{etso-core-cmpts.xsd}PartyType"/>
 *         <element name="SenderRole" type="{etso-core-cmpts.xsd}RoleType"/>
 *         <element name="ReceiverIdentification" type="{etso-core-cmpts.xsd}PartyType"/>
 *         <element name="ReceiverRole" type="{etso-core-cmpts.xsd}RoleType"/>
 *         <element name="CreationDateTime" type="{etso-core-cmpts.xsd}MessageDateTimeType"/>
 *         <element name="CapacityTimeInterval" type="{etso-core-cmpts.xsd}TimeIntervalType"/>
 *         <element name="Domain" type="{etso-core-cmpts.xsd}AreaType"/>
 *         <element name="CapacityTimeSeries" type="{}CapacityTimeSeries_Type" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Reason" type="{}Reason_Type" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="DtdVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="DtdRelease" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "documentIdentification", "documentVersion", "documentType", "processType", "senderIdentification", "senderRole", "receiverIdentification", "receiverRole", "creationDateTime", "capacityTimeInterval", "domain", "capacityTimeSeries", "reason" }) @XmlRootElement(name = "CapacityDocument", namespace = "") public class CapacityDocument { @XmlElement(name = "DocumentIdentification", required = true) protected IdentificationType documentIdentification; @XmlElement(name = "DocumentVersion", required = true) protected VersionType documentVersion; @XmlElement(name = "DocumentType", required = true) protected MessageType documentType; @XmlElement(name = "ProcessType", required = true) protected ProcessType processType; @XmlElement(name = "SenderIdentification", required = true) protected PartyType senderIdentification; @XmlElement(name = "SenderRole", required = true) protected RoleType senderRole; @XmlElement(name = "ReceiverIdentification", required = true) protected PartyType receiverIdentification; @XmlElement(name = "ReceiverRole", required = true) protected RoleType receiverRole; @XmlElement(name = "CreationDateTime", required = true) protected MessageDateTimeType creationDateTime; @XmlElement(name = "CapacityTimeInterval", required = true) protected TimeIntervalType capacityTimeInterval; @XmlElement(name = "Domain", required = true) protected AreaType domain; @XmlElement(name = "CapacityTimeSeries") protected List capacityTimeSeries; @XmlElement(name = "Reason") protected List reason; @XmlAttribute(name = "DtdVersion", required = true) protected String dtdVersion; @XmlAttribute(name = "DtdRelease", required = true) protected String dtdRelease; /** * Gets the value of the documentIdentification property. * * @return * possible object is * {@link IdentificationType } * */ public IdentificationType getDocumentIdentification() { return documentIdentification; } /** * Sets the value of the documentIdentification property. * * @param value * allowed object is * {@link IdentificationType } * */ public void setDocumentIdentification(IdentificationType value) { this.documentIdentification = value; } /** * Gets the value of the documentVersion property. * * @return * possible object is * {@link VersionType } * */ public VersionType getDocumentVersion() { return documentVersion; } /** * Sets the value of the documentVersion property. * * @param value * allowed object is * {@link VersionType } * */ public void setDocumentVersion(VersionType value) { this.documentVersion = value; } /** * Gets the value of the documentType property. * * @return * possible object is * {@link MessageType } * */ public MessageType getDocumentType() { return documentType; } /** * Sets the value of the documentType property. * * @param value * allowed object is * {@link MessageType } * */ public void setDocumentType(MessageType value) { this.documentType = value; } /** * Gets the value of the processType property. * * @return * possible object is * {@link ProcessType } * */ public ProcessType getProcessType() { return processType; } /** * Sets the value of the processType property. * * @param value * allowed object is * {@link ProcessType } * */ public void setProcessType(ProcessType value) { this.processType = value; } /** * Gets the value of the senderIdentification property. * * @return * possible object is * {@link PartyType } * */ public PartyType getSenderIdentification() { return senderIdentification; } /** * Sets the value of the senderIdentification property. * * @param value * allowed object is * {@link PartyType } * */ public void setSenderIdentification(PartyType value) { this.senderIdentification = value; } /** * Gets the value of the senderRole property. * * @return * possible object is * {@link RoleType } * */ public RoleType getSenderRole() { return senderRole; } /** * Sets the value of the senderRole property. * * @param value * allowed object is * {@link RoleType } * */ public void setSenderRole(RoleType value) { this.senderRole = value; } /** * Gets the value of the receiverIdentification property. * * @return * possible object is * {@link PartyType } * */ public PartyType getReceiverIdentification() { return receiverIdentification; } /** * Sets the value of the receiverIdentification property. * * @param value * allowed object is * {@link PartyType } * */ public void setReceiverIdentification(PartyType value) { this.receiverIdentification = value; } /** * Gets the value of the receiverRole property. * * @return * possible object is * {@link RoleType } * */ public RoleType getReceiverRole() { return receiverRole; } /** * Sets the value of the receiverRole property. * * @param value * allowed object is * {@link RoleType } * */ public void setReceiverRole(RoleType value) { this.receiverRole = value; } /** * Gets the value of the creationDateTime property. * * @return * possible object is * {@link MessageDateTimeType } * */ public MessageDateTimeType getCreationDateTime() { return creationDateTime; } /** * Sets the value of the creationDateTime property. * * @param value * allowed object is * {@link MessageDateTimeType } * */ public void setCreationDateTime(MessageDateTimeType value) { this.creationDateTime = value; } /** * Gets the value of the capacityTimeInterval property. * * @return * possible object is * {@link TimeIntervalType } * */ public TimeIntervalType getCapacityTimeInterval() { return capacityTimeInterval; } /** * Sets the value of the capacityTimeInterval property. * * @param value * allowed object is * {@link TimeIntervalType } * */ public void setCapacityTimeInterval(TimeIntervalType value) { this.capacityTimeInterval = value; } /** * Gets the value of the domain property. * * @return * possible object is * {@link AreaType } * */ public AreaType getDomain() { return domain; } /** * Sets the value of the domain property. * * @param value * allowed object is * {@link AreaType } * */ public void setDomain(AreaType value) { this.domain = value; } /** * Gets the value of the capacityTimeSeries 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 JAXB object. * This is why there is not a set method for the capacityTimeSeries property. * *

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

     *    getCapacityTimeSeries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CapacityTimeSeriesType } * * */ public List getCapacityTimeSeries() { if (capacityTimeSeries == null) { capacityTimeSeries = new ArrayList(); } return this.capacityTimeSeries; } /** * Gets the value of the reason 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 JAXB object. * This is why there is not a set method for the reason property. * *

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

     *    getReason().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReasonType } * * */ public List getReason() { if (reason == null) { reason = new ArrayList(); } return this.reason; } /** * Gets the value of the dtdVersion property. * * @return * possible object is * {@link String } * */ public String getDtdVersion() { return dtdVersion; } /** * Sets the value of the dtdVersion property. * * @param value * allowed object is * {@link String } * */ public void setDtdVersion(String value) { this.dtdVersion = value; } /** * Gets the value of the dtdRelease property. * * @return * possible object is * {@link String } * */ public String getDtdRelease() { return dtdRelease; } /** * Sets the value of the dtdRelease property. * * @param value * allowed object is * {@link String } * */ public void setDtdRelease(String value) { this.dtdRelease = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy