All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cqframework.cql.elm.execution.Message Maven / Gradle / Ivy

There is a newer version: 1.3.12.1
Show newest version
//
// 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 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; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof Message)) { 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)) { 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)) { 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)) { 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)) { 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)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = super.hashCode(locator, strategy); { Expression theSource; theSource = this.getSource(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "source", theSource), currentHashCode, theSource); } { Expression theCondition; theCondition = this.getCondition(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "condition", theCondition), currentHashCode, theCondition); } { Expression theCode; theCode = this.getCode(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "code", theCode), currentHashCode, theCode); } { Expression theSeverity; theSeverity = this.getSeverity(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "severity", theSeverity), currentHashCode, theSeverity); } { Expression theMessage; theMessage = this.getMessage(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "message", theMessage), currentHashCode, theMessage); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { super.appendFields(locator, buffer, strategy); { Expression theSource; theSource = this.getSource(); strategy.appendField(locator, this, "source", buffer, theSource); } { Expression theCondition; theCondition = this.getCondition(); strategy.appendField(locator, this, "condition", buffer, theCondition); } { Expression theCode; theCode = this.getCode(); strategy.appendField(locator, this, "code", buffer, theCode); } { Expression theSeverity; theSeverity = this.getSeverity(); strategy.appendField(locator, this, "severity", buffer, theSeverity); } { Expression theMessage; theMessage = this.getMessage(); strategy.appendField(locator, this, "message", buffer, theMessage); } return buffer; } }