com.farao_community.farao.cse.data.xsd.ntc2.CapacityTimeSeries Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gridcapa-cse-data Show documentation
Show all versions of gridcapa-cse-data Show documentation
Module that manages specific data format for CSE processes
//
// 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.03.12 at 10:04:13 AM UTC
//
package com.farao_community.farao.cse.data.xsd.ntc2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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 ref="{}TimeSeriesIdentification"/>
* <element ref="{}BusinessType"/>
* <element ref="{}Product"/>
* <element ref="{}InArea"/>
* <element ref="{}OutArea"/>
* <element ref="{}MeasureUnit"/>
* <element ref="{}Period"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"timeSeriesIdentification",
"businessType",
"product",
"inArea",
"outArea",
"measureUnit",
"period"
})
@XmlRootElement(name = "CapacityTimeSeries")
public class CapacityTimeSeries {
@XmlElement(name = "TimeSeriesIdentification", required = true)
protected TimeSeriesIdentification timeSeriesIdentification;
@XmlElement(name = "BusinessType", required = true)
protected BusinessType businessType;
@XmlElement(name = "Product", required = true)
protected Product product;
@XmlElement(name = "InArea", required = true)
protected InArea inArea;
@XmlElement(name = "OutArea", required = true)
protected OutArea outArea;
@XmlElement(name = "MeasureUnit", required = true)
protected MeasureUnit measureUnit;
@XmlElement(name = "Period", required = true)
protected Period period;
/**
* Gets the value of the timeSeriesIdentification property.
*
* @return
* possible object is
* {@link TimeSeriesIdentification }
*
*/
public TimeSeriesIdentification getTimeSeriesIdentification() {
return timeSeriesIdentification;
}
/**
* Sets the value of the timeSeriesIdentification property.
*
* @param value
* allowed object is
* {@link TimeSeriesIdentification }
*
*/
public void setTimeSeriesIdentification(TimeSeriesIdentification value) {
this.timeSeriesIdentification = value;
}
/**
* Gets the value of the businessType property.
*
* @return
* possible object is
* {@link BusinessType }
*
*/
public BusinessType getBusinessType() {
return businessType;
}
/**
* Sets the value of the businessType property.
*
* @param value
* allowed object is
* {@link BusinessType }
*
*/
public void setBusinessType(BusinessType value) {
this.businessType = value;
}
/**
* Gets the value of the product property.
*
* @return
* possible object is
* {@link Product }
*
*/
public Product getProduct() {
return product;
}
/**
* Sets the value of the product property.
*
* @param value
* allowed object is
* {@link Product }
*
*/
public void setProduct(Product value) {
this.product = value;
}
/**
* Gets the value of the inArea property.
*
* @return
* possible object is
* {@link InArea }
*
*/
public InArea getInArea() {
return inArea;
}
/**
* Sets the value of the inArea property.
*
* @param value
* allowed object is
* {@link InArea }
*
*/
public void setInArea(InArea value) {
this.inArea = value;
}
/**
* Gets the value of the outArea property.
*
* @return
* possible object is
* {@link OutArea }
*
*/
public OutArea getOutArea() {
return outArea;
}
/**
* Sets the value of the outArea property.
*
* @param value
* allowed object is
* {@link OutArea }
*
*/
public void setOutArea(OutArea value) {
this.outArea = value;
}
/**
* Gets the value of the measureUnit property.
*
* @return
* possible object is
* {@link MeasureUnit }
*
*/
public MeasureUnit getMeasureUnit() {
return measureUnit;
}
/**
* Sets the value of the measureUnit property.
*
* @param value
* allowed object is
* {@link MeasureUnit }
*
*/
public void setMeasureUnit(MeasureUnit value) {
this.measureUnit = value;
}
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link Period }
*
*/
public Period getPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link Period }
*
*/
public void setPeriod(Period value) {
this.period = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy