energyml.prodml2_0.ProductFlowQualifierExpected Maven / Gradle / Ivy
Show all versions of energyml-prodml20 Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Defines an expected combination of kinds.
*
* Java class for ProductFlowQualifierExpected complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProductFlowQualifierExpected">
* <complexContent>
* <extension base="{http://www.energistics.org/energyml/data/prodmlv2}ExpectedFlowQualifier">
* <sequence>
* <element name="Flow" type="energyml.prodml2_0.ReportingFlow"/>
* <element name="Product" type="energyml.prodml2_0.ReportingProduct" minOccurs="0"/>
* <element name="Qualifier" type="energyml.prodml2_0.FlowQualifier" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="uid" use="required" type="energyml.common2_1.String64" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProductFlowQualifierExpected", propOrder = {
"flow",
"product",
"qualifier"
})
public class ProductFlowQualifierExpected
extends ExpectedFlowQualifier
{
@XmlElement(name = "Flow", required = true)
@XmlSchemaType(name = "string")
protected ReportingFlow flow;
@XmlElement(name = "Product")
protected String product;
@XmlElement(name = "Qualifier")
@XmlSchemaType(name = "string")
protected List qualifier;
@XmlAttribute(name = "uid", required = true)
protected String uid;
/**
* Gets the value of the flow property.
*
* @return
* possible object is
* {@link ReportingFlow }
*
*/
public ReportingFlow getFlow() {
return flow;
}
/**
* Sets the value of the flow property.
*
* @param value
* allowed object is
* {@link ReportingFlow }
*
*/
public void setFlow(ReportingFlow value) {
this.flow = value;
}
/**
* Gets the value of the product property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProduct() {
return product;
}
/**
* Sets the value of the product property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProduct(String value) {
this.product = value;
}
/**
* Gets the value of the qualifier 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 Jakarta XML Binding object.
* This is why there is not a set
method for the qualifier property.
*
*
* For example, to add a new item, do as follows:
*
* getQualifier().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FlowQualifier }
*
*
*/
public List getQualifier() {
if (qualifier == null) {
qualifier = new ArrayList();
}
return this.qualifier;
}
/**
* Gets the value of the uid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUid(String value) {
this.uid = value;
}
}