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

org.hl7.fhir.OperationOutcomeIssue Maven / Gradle / Ivy

Go to download

The quick library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.12.06 at 03:09:41 PM MST 
//


package org.hl7.fhir;

import java.util.ArrayList;
import java.util.Collection;
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;
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;


/**
 * A collection of error, warning or information messages that result from a system action.
 * 
 * 

Java class for OperationOutcome.Issue complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="OperationOutcome.Issue">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}BackboneElement">
 *       <sequence>
 *         <element name="severity" type="{http://hl7.org/fhir}IssueSeverity"/>
 *         <element name="code" type="{http://hl7.org/fhir}IssueType"/>
 *         <element name="details" type="{http://hl7.org/fhir}CodeableConcept" minOccurs="0"/>
 *         <element name="diagnostics" type="{http://hl7.org/fhir}string" minOccurs="0"/>
 *         <element name="location" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="expression" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OperationOutcome.Issue", propOrder = { "severity", "code", "details", "diagnostics", "location", "expression" }) public class OperationOutcomeIssue extends BackboneElement implements Equals2, HashCode2, ToString2 { @XmlElement(required = true) protected IssueSeverity severity; @XmlElement(required = true) protected IssueType code; protected CodeableConcept details; protected org.hl7.fhir.String diagnostics; protected List location; protected List expression; /** * Gets the value of the severity property. * * @return * possible object is * {@link IssueSeverity } * */ public IssueSeverity getSeverity() { return severity; } /** * Sets the value of the severity property. * * @param value * allowed object is * {@link IssueSeverity } * */ public void setSeverity(IssueSeverity value) { this.severity = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link IssueType } * */ public IssueType getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link IssueType } * */ public void setCode(IssueType value) { this.code = value; } /** * Gets the value of the details property. * * @return * possible object is * {@link CodeableConcept } * */ public CodeableConcept getDetails() { return details; } /** * Sets the value of the details property. * * @param value * allowed object is * {@link CodeableConcept } * */ public void setDetails(CodeableConcept value) { this.details = value; } /** * Gets the value of the diagnostics property. * * @return * possible object is * {@link org.hl7.fhir.String } * */ public org.hl7.fhir.String getDiagnostics() { return diagnostics; } /** * Sets the value of the diagnostics property. * * @param value * allowed object is * {@link org.hl7.fhir.String } * */ public void setDiagnostics(org.hl7.fhir.String value) { this.diagnostics = value; } /** * Gets the value of the location 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 location property. * *

* For example, to add a new item, do as follows: *

     *    getLocation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link org.hl7.fhir.String } * * */ public List getLocation() { if (location == null) { location = new ArrayList(); } return this.location; } /** * Gets the value of the expression 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 expression property. * *

* For example, to add a new item, do as follows: *

     *    getExpression().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link org.hl7.fhir.String } * * */ public List getExpression() { if (expression == null) { expression = new ArrayList(); } return this.expression; } public OperationOutcomeIssue withSeverity(IssueSeverity value) { setSeverity(value); return this; } public OperationOutcomeIssue withCode(IssueType value) { setCode(value); return this; } public OperationOutcomeIssue withDetails(CodeableConcept value) { setDetails(value); return this; } public OperationOutcomeIssue withDiagnostics(org.hl7.fhir.String value) { setDiagnostics(value); return this; } public OperationOutcomeIssue withLocation(org.hl7.fhir.String... values) { if (values!= null) { for (org.hl7.fhir.String value: values) { getLocation().add(value); } } return this; } public OperationOutcomeIssue withLocation(Collection values) { if (values!= null) { getLocation().addAll(values); } return this; } public OperationOutcomeIssue withExpression(org.hl7.fhir.String... values) { if (values!= null) { for (org.hl7.fhir.String value: values) { getExpression().add(value); } } return this; } public OperationOutcomeIssue withExpression(Collection values) { if (values!= null) { getExpression().addAll(values); } return this; } @Override public OperationOutcomeIssue withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public OperationOutcomeIssue withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public OperationOutcomeIssue withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public OperationOutcomeIssue withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public OperationOutcomeIssue withId(java.lang.String value) { setId(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 OperationOutcomeIssue that = ((OperationOutcomeIssue) object); { IssueSeverity lhsSeverity; lhsSeverity = this.getSeverity(); IssueSeverity 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; } } { IssueType lhsCode; lhsCode = this.getCode(); IssueType 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; } } { CodeableConcept lhsDetails; lhsDetails = this.getDetails(); CodeableConcept rhsDetails; rhsDetails = that.getDetails(); if (!strategy.equals(LocatorUtils.property(thisLocator, "details", lhsDetails), LocatorUtils.property(thatLocator, "details", rhsDetails), lhsDetails, rhsDetails, (this.details!= null), (that.details!= null))) { return false; } } { org.hl7.fhir.String lhsDiagnostics; lhsDiagnostics = this.getDiagnostics(); org.hl7.fhir.String rhsDiagnostics; rhsDiagnostics = that.getDiagnostics(); if (!strategy.equals(LocatorUtils.property(thisLocator, "diagnostics", lhsDiagnostics), LocatorUtils.property(thatLocator, "diagnostics", rhsDiagnostics), lhsDiagnostics, rhsDiagnostics, (this.diagnostics!= null), (that.diagnostics!= null))) { return false; } } { List lhsLocation; lhsLocation = (((this.location!= null)&&(!this.location.isEmpty()))?this.getLocation():null); List rhsLocation; rhsLocation = (((that.location!= null)&&(!that.location.isEmpty()))?that.getLocation():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "location", lhsLocation), LocatorUtils.property(thatLocator, "location", rhsLocation), lhsLocation, rhsLocation, ((this.location!= null)&&(!this.location.isEmpty())), ((that.location!= null)&&(!that.location.isEmpty())))) { return false; } } { List lhsExpression; lhsExpression = (((this.expression!= null)&&(!this.expression.isEmpty()))?this.getExpression():null); List rhsExpression; rhsExpression = (((that.expression!= null)&&(!that.expression.isEmpty()))?that.getExpression():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "expression", lhsExpression), LocatorUtils.property(thatLocator, "expression", rhsExpression), lhsExpression, rhsExpression, ((this.expression!= null)&&(!this.expression.isEmpty())), ((that.expression!= null)&&(!that.expression.isEmpty())))) { 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); { IssueSeverity theSeverity; theSeverity = this.getSeverity(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "severity", theSeverity), currentHashCode, theSeverity, (this.severity!= null)); } { IssueType theCode; theCode = this.getCode(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "code", theCode), currentHashCode, theCode, (this.code!= null)); } { CodeableConcept theDetails; theDetails = this.getDetails(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "details", theDetails), currentHashCode, theDetails, (this.details!= null)); } { org.hl7.fhir.String theDiagnostics; theDiagnostics = this.getDiagnostics(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "diagnostics", theDiagnostics), currentHashCode, theDiagnostics, (this.diagnostics!= null)); } { List theLocation; theLocation = (((this.location!= null)&&(!this.location.isEmpty()))?this.getLocation():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "location", theLocation), currentHashCode, theLocation, ((this.location!= null)&&(!this.location.isEmpty()))); } { List theExpression; theExpression = (((this.expression!= null)&&(!this.expression.isEmpty()))?this.getExpression():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "expression", theExpression), currentHashCode, theExpression, ((this.expression!= null)&&(!this.expression.isEmpty()))); } return currentHashCode; } @Override public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance(); return this.hashCode(null, strategy); } @Override public java.lang.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); { IssueSeverity theSeverity; theSeverity = this.getSeverity(); strategy.appendField(locator, this, "severity", buffer, theSeverity, (this.severity!= null)); } { IssueType theCode; theCode = this.getCode(); strategy.appendField(locator, this, "code", buffer, theCode, (this.code!= null)); } { CodeableConcept theDetails; theDetails = this.getDetails(); strategy.appendField(locator, this, "details", buffer, theDetails, (this.details!= null)); } { org.hl7.fhir.String theDiagnostics; theDiagnostics = this.getDiagnostics(); strategy.appendField(locator, this, "diagnostics", buffer, theDiagnostics, (this.diagnostics!= null)); } { List theLocation; theLocation = (((this.location!= null)&&(!this.location.isEmpty()))?this.getLocation():null); strategy.appendField(locator, this, "location", buffer, theLocation, ((this.location!= null)&&(!this.location.isEmpty()))); } { List theExpression; theExpression = (((this.expression!= null)&&(!this.expression.isEmpty()))?this.getExpression():null); strategy.appendField(locator, this, "expression", buffer, theExpression, ((this.expression!= null)&&(!this.expression.isEmpty()))); } return buffer; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy