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

org.hl7.fhir.TestScriptFixture 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: 2024.01.18 at 08:26:13 AM MST 
//


package org.hl7.fhir;

import java.util.Collection;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
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;


/**
 * TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.
 * 
 * 

Java class for TestScript.Fixture complex type. * *

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

 * <complexType name="TestScript.Fixture">
 *   <complexContent>
 *     <extension base="{http://hl7.org/fhir}BackboneElement">
 *       <sequence>
 *         <element name="autocreate" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="autodelete" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
 *         <element name="resource" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TestScript.Fixture", propOrder = { "autocreate", "autodelete", "resource" }) public class TestScriptFixture extends BackboneElement implements Equals2, HashCode2, ToString2 { protected Boolean autocreate; protected Boolean autodelete; protected Reference resource; /** * Gets the value of the autocreate property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAutocreate() { return autocreate; } /** * Sets the value of the autocreate property. * * @param value * allowed object is * {@link Boolean } * */ public void setAutocreate(Boolean value) { this.autocreate = value; } /** * Gets the value of the autodelete property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAutodelete() { return autodelete; } /** * Sets the value of the autodelete property. * * @param value * allowed object is * {@link Boolean } * */ public void setAutodelete(Boolean value) { this.autodelete = value; } /** * Gets the value of the resource property. * * @return * possible object is * {@link Reference } * */ public Reference getResource() { return resource; } /** * Sets the value of the resource property. * * @param value * allowed object is * {@link Reference } * */ public void setResource(Reference value) { this.resource = value; } public TestScriptFixture withAutocreate(Boolean value) { setAutocreate(value); return this; } public TestScriptFixture withAutodelete(Boolean value) { setAutodelete(value); return this; } public TestScriptFixture withResource(Reference value) { setResource(value); return this; } @Override public TestScriptFixture withModifierExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getModifierExtension().add(value); } } return this; } @Override public TestScriptFixture withModifierExtension(Collection values) { if (values!= null) { getModifierExtension().addAll(values); } return this; } @Override public TestScriptFixture withExtension(Extension... values) { if (values!= null) { for (Extension value: values) { getExtension().add(value); } } return this; } @Override public TestScriptFixture withExtension(Collection values) { if (values!= null) { getExtension().addAll(values); } return this; } @Override public TestScriptFixture 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 TestScriptFixture that = ((TestScriptFixture) object); { Boolean lhsAutocreate; lhsAutocreate = this.getAutocreate(); Boolean rhsAutocreate; rhsAutocreate = that.getAutocreate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "autocreate", lhsAutocreate), LocatorUtils.property(thatLocator, "autocreate", rhsAutocreate), lhsAutocreate, rhsAutocreate, (this.autocreate!= null), (that.autocreate!= null))) { return false; } } { Boolean lhsAutodelete; lhsAutodelete = this.getAutodelete(); Boolean rhsAutodelete; rhsAutodelete = that.getAutodelete(); if (!strategy.equals(LocatorUtils.property(thisLocator, "autodelete", lhsAutodelete), LocatorUtils.property(thatLocator, "autodelete", rhsAutodelete), lhsAutodelete, rhsAutodelete, (this.autodelete!= null), (that.autodelete!= null))) { return false; } } { Reference lhsResource; lhsResource = this.getResource(); Reference rhsResource; rhsResource = that.getResource(); if (!strategy.equals(LocatorUtils.property(thisLocator, "resource", lhsResource), LocatorUtils.property(thatLocator, "resource", rhsResource), lhsResource, rhsResource, (this.resource!= null), (that.resource!= 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); { Boolean theAutocreate; theAutocreate = this.getAutocreate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "autocreate", theAutocreate), currentHashCode, theAutocreate, (this.autocreate!= null)); } { Boolean theAutodelete; theAutodelete = this.getAutodelete(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "autodelete", theAutodelete), currentHashCode, theAutodelete, (this.autodelete!= null)); } { Reference theResource; theResource = this.getResource(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "resource", theResource), currentHashCode, theResource, (this.resource!= null)); } 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); { Boolean theAutocreate; theAutocreate = this.getAutocreate(); strategy.appendField(locator, this, "autocreate", buffer, theAutocreate, (this.autocreate!= null)); } { Boolean theAutodelete; theAutodelete = this.getAutodelete(); strategy.appendField(locator, this, "autodelete", buffer, theAutodelete, (this.autodelete!= null)); } { Reference theResource; theResource = this.getResource(); strategy.appendField(locator, this, "resource", buffer, theResource, (this.resource!= null)); } return buffer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy