com.powsybl.openrao.data.crac.io.cim.xsd.ContingencySeries 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 Contingency_Series complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Contingency_Series", propOrder = {
"mrid",
"name",
"partyMarketParticipant",
"registeredResource",
"reason"
})
public class ContingencySeries {
@XmlElement(name = "mRID", required = true)
protected String mrid;
protected String name;
@XmlElement(name = "Party_MarketParticipant")
protected List partyMarketParticipant;
@XmlElement(name = "RegisteredResource")
protected List registeredResource;
@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é 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;
}
/**
* Gets the value of the registeredResource 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 registeredResource property.
*
*
* For example, to add a new item, do as follows:
*
*
* getRegisteredResource().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContingencyRegisteredResource }
*
*
*
* @return
* The value of the registeredResource property.
*/
public List getRegisteredResource() {
if (registeredResource == null) {
registeredResource = new ArrayList<>();
}
return this.registeredResource;
}
/**
* 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 SeriesReason }
*
*
*
* @return
* The value of the reason property.
*/
public List getReason() {
if (reason == null) {
reason = new ArrayList<>();
}
return this.reason;
}
}