com.farao_community.farao.cse.data.xsd.NTCAnnualDocument Maven / Gradle / Ivy
Show all versions of gridcapa-cse-data Show documentation
//
// 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.12.17 at 02:20:10 PM UTC
//
package com.farao_community.farao.cse.data.xsd;
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="Domain" type="{etso-core-cmpts.xsd}AreaType"/>
* <element name="NTCvalues" type="{}T_NTCValues" maxOccurs="unbounded" minOccurs="0"/>
* <element name="SplittingFactors" type="{}T_NTCValues" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TRM" type="{}T_TRM"/>
* <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",
"domain",
"ntCvalues",
"splittingFactors",
"trm",
"reason"
})
@XmlRootElement(name = "NTC_annual_document", namespace = "")
public class NTCAnnualDocument {
@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 = "Domain", required = true)
protected AreaType domain;
@XmlElement(name = "NTCvalues")
protected List ntCvalues;
@XmlElement(name = "SplittingFactors")
protected List splittingFactors;
@XmlElement(name = "TRM", required = true)
protected TTRM trm;
@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 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 ntCvalues 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 ntCvalues property.
*
*
* For example, to add a new item, do as follows:
*
* getNTCvalues().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TNTCValues }
*
*
*/
public List getNTCvalues() {
if (ntCvalues == null) {
ntCvalues = new ArrayList();
}
return this.ntCvalues;
}
/**
* Gets the value of the splittingFactors 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 splittingFactors property.
*
*
* For example, to add a new item, do as follows:
*
* getSplittingFactors().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TNTCValues }
*
*
*/
public List getSplittingFactors() {
if (splittingFactors == null) {
splittingFactors = new ArrayList();
}
return this.splittingFactors;
}
/**
* Gets the value of the trm property.
*
* @return
* possible object is
* {@link TTRM }
*
*/
public TTRM getTRM() {
return trm;
}
/**
* Sets the value of the trm property.
*
* @param value
* allowed object is
* {@link TTRM }
*
*/
public void setTRM(TTRM value) {
this.trm = value;
}
/**
* 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;
}
}