org.cqframework.cql.elm.execution.Message Maven / Gradle / Ivy
//
// 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: 2019.07.10 at 06:14:46 PM MDT
//
package org.cqframework.cql.elm.execution;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* The Message operator is used to support errors, warnings, messages, and tracing in an ELM evaluation environment.
*
* The operator is defined to return the input source.
*
* If the severity is Error, the operator is expected to raise a run-time error and return the message to the calling environment. This is the only severity that stops processing. All other severities continue evaluation of the expression.
*
* If the severity is Trace, the operator is expected to make the message available to a tracing mechanism such as a debug log in the calling environment.
*
* If the severity is Warning, the operator is expected to provide the message as a warning to the calling environment.
*
* If the severity is Message, the operator is expected to provide the message as information to the calling environment.
*
* Java class for Message complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Message">
* <complexContent>
* <extension base="{urn:hl7-org:elm:r1}OperatorExpression">
* <sequence>
* <element name="source" type="{urn:hl7-org:elm:r1}Expression"/>
* <element name="condition" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* <element name="code" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* <element name="severity" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* <element name="message" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Message", namespace = "urn:hl7-org:elm:r1", propOrder = {
"source",
"condition",
"code",
"severity",
"message"
})
public class Message
extends OperatorExpression
implements Equals, HashCode, ToString
{
@XmlElement(namespace = "urn:hl7-org:elm:r1", required = true)
protected Expression source;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression condition;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression code;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression severity;
@XmlElement(namespace = "urn:hl7-org:elm:r1")
protected Expression message;
/**
* Gets the value of the source property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getSource() {
return source;
}
/**
* Sets the value of the source property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setSource(Expression value) {
this.source = value;
}
/**
* Gets the value of the condition property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setCondition(Expression value) {
this.condition = value;
}
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setCode(Expression value) {
this.code = value;
}
/**
* Gets the value of the severity property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getSeverity() {
return severity;
}
/**
* Sets the value of the severity property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setSeverity(Expression value) {
this.severity = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link Expression }
*
*/
public Expression getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link Expression }
*
*/
public void setMessage(Expression value) {
this.message = value;
}
public Message withSource(Expression value) {
setSource(value);
return this;
}
public Message withCondition(Expression value) {
setCondition(value);
return this;
}
public Message withCode(Expression value) {
setCode(value);
return this;
}
public Message withSeverity(Expression value) {
setSeverity(value);
return this;
}
public Message withMessage(Expression value) {
setMessage(value);
return this;
}
@Override
public Message withSignature(TypeSpecifier... values) {
if (values!= null) {
for (TypeSpecifier value: values) {
getSignature().add(value);
}
}
return this;
}
@Override
public Message withSignature(Collection values) {
if (values!= null) {
getSignature().addAll(values);
}
return this;
}
@Override
public Message withAnnotation(Object... values) {
if (values!= null) {
for (Object value: values) {
getAnnotation().add(value);
}
}
return this;
}
@Override
public Message withAnnotation(Collection