
org.cqframework.cql.elm.execution.Message Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.4.0-b180830.0438
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.06.05 at 02:37:13 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.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
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.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
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 Equals2, HashCode2, ToString2
{
@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(CqlToElmBase... values) {
if (values!= null) {
for (CqlToElmBase value: values) {
getAnnotation().add(value);
}
}
return this;
}
@Override
public Message withAnnotation(Collection values) {
if (values!= null) {
getAnnotation().addAll(values);
}
return this;
}
@Override
public Message withResultTypeSpecifier(TypeSpecifier value) {
setResultTypeSpecifier(value);
return this;
}
@Override
public Message withLocalId(String value) {
setLocalId(value);
return this;
}
@Override
public Message withLocator(String value) {
setLocator(value);
return this;
}
@Override
public Message withResultTypeName(QName value) {
setResultTypeName(value);
return this;
}
@Override
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
}
if (this == object) {
return true;
}
if (!super.equals(thisLocator, thatLocator, object, strategy)) {
return false;
}
final Message that = ((Message) object);
{
Expression lhsSource;
lhsSource = this.getSource();
Expression rhsSource;
rhsSource = that.getSource();
if (!strategy.equals(LocatorUtils.property(thisLocator, "source", lhsSource), LocatorUtils.property(thatLocator, "source", rhsSource), lhsSource, rhsSource, (this.source!= null), (that.source!= null))) {
return false;
}
}
{
Expression lhsCondition;
lhsCondition = this.getCondition();
Expression rhsCondition;
rhsCondition = that.getCondition();
if (!strategy.equals(LocatorUtils.property(thisLocator, "condition", lhsCondition), LocatorUtils.property(thatLocator, "condition", rhsCondition), lhsCondition, rhsCondition, (this.condition!= null), (that.condition!= null))) {
return false;
}
}
{
Expression lhsCode;
lhsCode = this.getCode();
Expression rhsCode;
rhsCode = that.getCode();
if (!strategy.equals(LocatorUtils.property(thisLocator, "code", lhsCode), LocatorUtils.property(thatLocator, "code", rhsCode), lhsCode, rhsCode, (this.code!= null), (that.code!= null))) {
return false;
}
}
{
Expression lhsSeverity;
lhsSeverity = this.getSeverity();
Expression rhsSeverity;
rhsSeverity = that.getSeverity();
if (!strategy.equals(LocatorUtils.property(thisLocator, "severity", lhsSeverity), LocatorUtils.property(thatLocator, "severity", rhsSeverity), lhsSeverity, rhsSeverity, (this.severity!= null), (that.severity!= null))) {
return false;
}
}
{
Expression lhsMessage;
lhsMessage = this.getMessage();
Expression rhsMessage;
rhsMessage = that.getMessage();
if (!strategy.equals(LocatorUtils.property(thisLocator, "message", lhsMessage), LocatorUtils.property(thatLocator, "message", rhsMessage), lhsMessage, rhsMessage, (this.message!= null), (that.message!= null))) {
return false;
}
}
return true;
}
@Override
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance();
return equals(null, null, object, strategy);
}
@Override
public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) {
int currentHashCode = super.hashCode(locator, strategy);
{
Expression theSource;
theSource = this.getSource();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "source", theSource), currentHashCode, theSource, (this.source!= null));
}
{
Expression theCondition;
theCondition = this.getCondition();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "condition", theCondition), currentHashCode, theCondition, (this.condition!= null));
}
{
Expression theCode;
theCode = this.getCode();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "code", theCode), currentHashCode, theCode, (this.code!= null));
}
{
Expression theSeverity;
theSeverity = this.getSeverity();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "severity", theSeverity), currentHashCode, theSeverity, (this.severity!= null));
}
{
Expression theMessage;
theMessage = this.getMessage();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "message", theMessage), currentHashCode, theMessage, (this.message!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
@Override
public String toString() {
final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance();
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
@Override
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
@Override
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
super.appendFields(locator, buffer, strategy);
{
Expression theSource;
theSource = this.getSource();
strategy.appendField(locator, this, "source", buffer, theSource, (this.source!= null));
}
{
Expression theCondition;
theCondition = this.getCondition();
strategy.appendField(locator, this, "condition", buffer, theCondition, (this.condition!= null));
}
{
Expression theCode;
theCode = this.getCode();
strategy.appendField(locator, this, "code", buffer, theCode, (this.code!= null));
}
{
Expression theSeverity;
theSeverity = this.getSeverity();
strategy.appendField(locator, this, "severity", buffer, theSeverity, (this.severity!= null));
}
{
Expression theMessage;
theMessage = this.getMessage();
strategy.appendField(locator, this, "message", buffer, theMessage, (this.message!= null));
}
return buffer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy