com.powsybl.openrao.data.crac.io.cim.xsd.Series Maven / Gradle / Ivy
Show all versions of open-rao-crac-io-cim Show documentation
//
// Ce fichier a été généré par Eclipse Implementation of JAXB, v4.0.5
// Voir https://eclipse-ee4j.github.io/jaxb-ri
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
//
package com.powsybl.openrao.data.crac.io.cim.xsd;
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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Classe Java pour Series complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Series", propOrder = {
"mrid",
"businessType",
"name",
"partyMarketParticipant",
"optimizationMarketObjectStatusStatus",
"additionalConstraintSeries",
"contingencySeries",
"monitoredSeries",
"remedialActionSeries",
"reason"
})
public class Series {
@XmlElement(name = "mRID", required = true)
protected String mrid;
@XmlElement(required = true)
protected String businessType;
protected String name;
@XmlElement(name = "Party_MarketParticipant")
protected List partyMarketParticipant;
@XmlElement(name = "optimization_MarketObjectStatus.status")
protected String optimizationMarketObjectStatusStatus;
@XmlElement(name = "AdditionalConstraint_Series")
protected List additionalConstraintSeries;
@XmlElement(name = "Contingency_Series")
protected List contingencySeries;
@XmlElement(name = "Monitored_Series")
protected List monitoredSeries;
@XmlElement(name = "RemedialAction_Series")
protected List remedialActionSeries;
@XmlElement(name = "Reason")
protected List reason;
/**
* Obtient la valeur de la propriété mrid.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMRID() {
return mrid;
}
/**
* Définit la valeur de la propriété mrid.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMRID(String value) {
this.mrid = value;
}
/**
* Obtient la valeur de la propriété businessType.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBusinessType() {
return businessType;
}
/**
* Définit la valeur de la propriété businessType.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBusinessType(String value) {
this.businessType = value;
}
/**
* Obtient la valeur de la propriété name.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Définit la valeur de la propriété name.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the partyMarketParticipant 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 partyMarketParticipant property.
*
*
* For example, to add a new item, do as follows:
*
*
* getPartyMarketParticipant().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PartyMarketParticipant }
*
*
*
* @return
* The value of the partyMarketParticipant property.
*/
public List getPartyMarketParticipant() {
if (partyMarketParticipant == null) {
partyMarketParticipant = new ArrayList<>();
}
return this.partyMarketParticipant;
}
/**
* Obtient la valeur de la propriété optimizationMarketObjectStatusStatus.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOptimizationMarketObjectStatusStatus() {
return optimizationMarketObjectStatusStatus;
}
/**
* Définit la valeur de la propriété optimizationMarketObjectStatusStatus.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOptimizationMarketObjectStatusStatus(String value) {
this.optimizationMarketObjectStatusStatus = value;
}
/**
* Gets the value of the additionalConstraintSeries 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 additionalConstraintSeries property.
*
*
* For example, to add a new item, do as follows:
*
*
* getAdditionalConstraintSeries().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AdditionalConstraintSeries }
*
*
*
* @return
* The value of the additionalConstraintSeries property.
*/
public List getAdditionalConstraintSeries() {
if (additionalConstraintSeries == null) {
additionalConstraintSeries = new ArrayList<>();
}
return this.additionalConstraintSeries;
}
/**
* Gets the value of the contingencySeries 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 contingencySeries property.
*
*
* For example, to add a new item, do as follows:
*
*
* getContingencySeries().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContingencySeries }
*
*
*
* @return
* The value of the contingencySeries property.
*/
public List getContingencySeries() {
if (contingencySeries == null) {
contingencySeries = new ArrayList<>();
}
return this.contingencySeries;
}
/**
* Gets the value of the monitoredSeries 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 monitoredSeries property.
*
*
* For example, to add a new item, do as follows:
*
*
* getMonitoredSeries().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MonitoredSeries }
*
*
*
* @return
* The value of the monitoredSeries property.
*/
public List getMonitoredSeries() {
if (monitoredSeries == null) {
monitoredSeries = new ArrayList<>();
}
return this.monitoredSeries;
}
/**
* Gets the value of the remedialActionSeries 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 remedialActionSeries property.
*
*
* For example, to add a new item, do as follows:
*
*
* getRemedialActionSeries().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RemedialActionSeries }
*
*
*
* @return
* The value of the remedialActionSeries property.
*/
public List getRemedialActionSeries() {
if (remedialActionSeries == null) {
remedialActionSeries = new ArrayList<>();
}
return this.remedialActionSeries;
}
/**
* 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 Reason }
*
*
*
* @return
* The value of the reason property.
*/
public List getReason() {
if (reason == null) {
reason = new ArrayList<>();
}
return this.reason;
}
}