| Package | Description |
|---|---|
| org.hl7.fhir.r4.context | |
| org.hl7.fhir.r4.elementmodel | |
| org.hl7.fhir.r4.formats | |
| org.hl7.fhir.r4.hapi.ctx | |
| org.hl7.fhir.r4.model | |
| org.hl7.fhir.r4.utils | |
| org.hl7.fhir.r4.utils.client |
| Modifier and Type | Method and Description |
|---|---|
<T extends Resource> |
BaseWorkerContext.fetchResource(Class<T> class_,
String uri) |
<T extends Resource> |
IWorkerContext.fetchResource(Class<T> class_,
String uri)
Find an identified resource.
|
<T extends Resource> |
BaseWorkerContext.fetchResourceWithException(Class<T> class_,
String uri) |
<T extends Resource> |
IWorkerContext.fetchResourceWithException(Class<T> class_,
String uri) |
<T extends Resource> |
BaseWorkerContext.hasResource(Class<T> class_,
String uri) |
<T extends Resource> |
IWorkerContext.hasResource(Class<T> class_,
String uri)
find whether a resource is available.
|
| Modifier and Type | Method and Description |
|---|---|
Resource |
BaseWorkerContext.fetchResourceById(String type,
String uri) |
Resource |
IWorkerContext.fetchResourceById(String type,
String uri)
Variation of fetchResource when you have a string type, and don't need the right class
The URI can have one of 3 formats:
- a full URL e.g.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseWorkerContext.cacheResource(Resource r) |
void |
IWorkerContext.cacheResource(Resource res)
cache a resource for later retrieval using fetchResource.
|
void |
BaseWorkerContext.dropResource(Resource r) |
| Modifier and Type | Method and Description |
|---|---|
Resource |
ObjectConverter.convert(Element element) |
| Modifier and Type | Method and Description |
|---|---|
Element |
ObjectConverter.convert(Resource ig) |
| Modifier and Type | Method and Description |
|---|---|
Resource |
ParserBase.parse(byte[] bytes) |
Resource |
IParser.parse(byte[] bytes)
parse content that is known to be a resource
|
Resource |
RdfParserBase.parse(InputStream input) |
Resource |
JsonParserBase.parse(InputStream input) |
Resource |
XmlParserBase.parse(InputStream input)
Parse content that is known to be a resource
|
Resource |
IParser.parse(InputStream input)
parse content that is known to be a resource
|
Resource |
JsonParserBase.parse(com.google.gson.JsonObject json)
parse xml that is known to be a resource, and that has already been read into a JSON object
|
Resource |
ParserBase.parse(String input) |
Resource |
IParser.parse(String input)
parse content that is known to be a resource
|
Resource |
XmlParserBase.parse(org.xmlpull.v1.XmlPullParser xpp)
parse xml that is known to be a resource, and that is already being read by an XML Pull Parser
This is if a resource is in a bigger piece of XML.
|
protected Resource |
JsonParser.parseResource(com.google.gson.JsonObject json) |
protected abstract Resource |
JsonParserBase.parseResource(com.google.gson.JsonObject json) |
protected Resource |
XmlParser.parseResource(org.xmlpull.v1.XmlPullParser xpp) |
protected abstract Resource |
XmlParserBase.parseResource(org.xmlpull.v1.XmlPullParser xpp) |
protected Resource |
XmlParserBase.parseResourceContained(org.xmlpull.v1.XmlPullParser xpp) |
| Modifier and Type | Method and Description |
|---|---|
void |
XmlParserBase.compose(org.hl7.fhir.utilities.xml.IXMLWriter writer,
Resource resource,
boolean htmlPretty) |
void |
JsonParserBase.compose(JsonCreator writer,
Resource resource)
Compose a resource using a pre-existing JsonWriter
|
void |
RdfParserBase.compose(OutputStream stream,
Resource resource) |
void |
JsonParserBase.compose(OutputStream stream,
Resource resource)
Compose a resource to a stream, possibly using pretty presentation for a human reader (used in the spec, for example, but not normally in production)
|
void |
XmlParserBase.compose(OutputStream stream,
Resource resource)
Compose a resource to a stream, possibly using pretty presentation for a human reader (used in the spec, for example, but not normally in production)
|
void |
IParser.compose(OutputStream stream,
Resource resource)
Compose a resource to a stream, possibly using pretty presentation for a human reader (used in the spec, for example, but not normally in production)
|
void |
XmlParserBase.compose(OutputStream stream,
Resource resource,
boolean htmlPretty)
Compose a resource to a stream, possibly using pretty presentation for a human reader, and maybe a different choice in the xhtml narrative (used in the spec in one place, but should not be used in production)
|
byte[] |
ParserBase.composeBytes(Resource resource) |
byte[] |
IParser.composeBytes(Resource resource)
Compose a resource to a stream, possibly using pretty presentation for a human reader (used in the spec, for example, but not normally in production)
|
protected void |
JsonParser.composeNamedReference(String name,
Resource resource) |
protected void |
JsonParser.composeResource(Resource resource) |
protected void |
XmlParser.composeResource(Resource resource) |
protected abstract void |
JsonParserBase.composeResource(Resource resource) |
protected abstract void |
XmlParserBase.composeResource(Resource resource) |
protected void |
XmlParser.composeResource(String name,
Resource resource) |
protected abstract void |
XmlParserBase.composeResource(String name,
Resource res) |
protected abstract void |
RdfParserBase.composeResource(Turtle.Complex complex,
Resource resource) |
protected void |
RdfParser.composeResource(Turtle.Complex parent,
Resource resource) |
protected void |
RdfParser.composeResource(Turtle.Complex t,
String parentType,
String name,
Resource element,
int index) |
protected void |
XmlParser.composeResourceAttributes(Resource element) |
protected void |
JsonParser.composeResourceElements(Resource element) |
protected void |
XmlParser.composeResourceElements(Resource element) |
String |
ParserBase.composeString(Resource resource) |
String |
IParser.composeString(Resource resource)
Compose a resource to a stream, possibly using pretty presentation for a human reader (used in the spec, for example, but not normally in production)
|
protected void |
XmlParser.parseResourceAttributes(org.xmlpull.v1.XmlPullParser xpp,
Resource res) |
protected boolean |
XmlParser.parseResourceContent(int eventType,
org.xmlpull.v1.XmlPullParser xpp,
Resource res) |
protected void |
JsonParser.parseResourceProperties(com.google.gson.JsonObject json,
Resource res) |
| Modifier and Type | Method and Description |
|---|---|
<T extends Resource> |
HapiWorkerContext.fetchResource(Class<T> theClass,
String theUri) |
<T extends Resource> |
HapiWorkerContext.fetchResourceWithException(Class<T> theClass,
String theUri) |
<T extends Resource> |
HapiWorkerContext.hasResource(Class<T> theClass_,
String theUri) |
| Modifier and Type | Method and Description |
|---|---|
Resource |
HapiWorkerContext.fetchResourceById(String theType,
String theUri) |
| Modifier and Type | Method and Description |
|---|---|
void |
HapiWorkerContext.cacheResource(Resource theRes) |
| Modifier and Type | Class and Description |
|---|---|
class |
Account
A financial tool for tracking value accrued for a particular purpose.
|
class |
ActivityDefinition
This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.
|
class |
AdverseEvent
Actual or potential/avoided event causing unintended physical injury resulting from or contributed to by medical care, a research study or other healthcare setting factors that requires additional monitoring, treatment, or hospitalization, or that results in death.
|
class |
AllergyIntolerance
Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.
|
class |
Appointment
A booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time.
|
class |
AppointmentResponse
A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
|
class |
AuditEvent
A record of an event made for purposes of maintaining a security log.
|
class |
BaseBinary |
class |
Basic
Basic is used for handling concepts not yet defined in FHIR, narrative-only resources that don't map to an existing resource, and custom resources not appropriate for inclusion in the FHIR specification.
|
class |
Binary
A resource that represents the data of a single raw artifact as digital content accessible in its native format.
|
class |
BiologicallyDerivedProduct
A material substance originating from a biological entity intended to be transplanted or infused
into another (possibly the same) biological entity.
|
class |
BodyStructure
Record details about an anatomical structure.
|
class |
Bundle
A container for a collection of resources.
|
class |
CapabilityStatement
A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
|
class |
CarePlan
Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions.
|
class |
CareTeam
The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of care for a patient.
|
class |
CatalogEntry
Catalog entries are wrappers that contextualize items included in a catalog.
|
class |
ChargeItem
The resource ChargeItem describes the provision of healthcare provider products for a certain patient, therefore referring not only to the product, but containing in addition details of the provision, like date, time, amounts and participating organizations and persons.
|
class |
ChargeItemDefinition
The ChargeItemDefinition resource provides the properties that apply to the (billing) codes necessary to calculate costs and prices.
|
class |
Claim
A provider issued list of services and products provided, or to be provided, to a patient which is provided to an insurer for payment recovery.
|
class |
ClaimResponse
This resource provides the adjudication details from the processing of a Claim resource.
|
class |
ClinicalImpression
A record of a clinical assessment performed to determine what problem(s) may affect the patient and before planning the treatments or management strategies that are best to manage a patient's condition.
|
class |
CodeSystem
The CodeSystem resource is used to declare the existence of and describe a code system or code system supplement and its key properties, and optionally define a part or all of its content.
|
class |
Communication
An occurrence of information being transmitted; e.g.
|
class |
CommunicationRequest
A request to convey information; e.g.
|
class |
CompartmentDefinition
A compartment definition that defines how resources are accessed on a server.
|
class |
Composition
A set of healthcare-related information that is assembled together into a single logical package that provides a single coherent statement of meaning, establishes its own context and that has clinical attestation with regard to who is making the statement.
|
class |
ConceptMap
A statement of relationships from one set of concepts to one or more other concepts - either concepts in code systems, or data element/data element concepts, or classes in class models.
|
class |
Condition
A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.
|
class |
Consent
A record of a healthcare consumer’s choices, which permits or denies identified recipient(s) or recipient role(s) to perform one or more actions within a given policy context, for specific purposes and periods of time.
|
class |
Contract
Legally enforceable, formally recorded unilateral or bilateral directive i.e., a policy or agreement.
|
class |
Coverage
Financial instrument which may be used to reimburse or pay for health care products and services.
|
class |
CoverageEligibilityRequest
The CoverageEligibilityRequest provides patient and insurance coverage information to an insurer for them to respond, in the form of an CoverageEligibilityResponse, with information regarding whether the stated coverage is valid and in-force and optionally to provide the insurance details of the policy.
|
class |
CoverageEligibilityResponse
This resource provides eligibility and plan details from the processing of an CoverageEligibilityRequest resource.
|
class |
DetectedIssue
Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient; e.g.
|
class |
Device
This resource identifies a type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity.
|
class |
DeviceDefinition
The characteristics, operational status and capabilities of a medical-related component of a medical device.
|
class |
DeviceMetric
Describes a measurement, calculation or setting capability of a medical device.
|
class |
DeviceRequest
Represents a request for a patient to employ a medical device.
|
class |
DeviceUseStatement
A record of a device being used by a patient where the record is the result of a report from the patient or another clinician.
|
class |
DiagnosticReport
The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these.
|
class |
DocumentManifest
A collection of documents compiled for a purpose together with metadata that applies to the collection.
|
class |
DocumentReference
A reference to a document.
|
class |
DomainResource
A resource that includes narrative, extensions, and contained resources.
|
class |
Encounter
An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
|
class |
Endpoint
The technical details of an endpoint that can be used for electronic services, such as for web services providing XDS.b or a REST endpoint for another FHIR server.
|
class |
EnrollmentRequest
This resource provides the insurance enrollment details to the insurer regarding a specified coverage.
|
class |
EnrollmentResponse
This resource provides enrollment and plan details from the processing of an Enrollment resource.
|
class |
EpisodeOfCare
An association between a patient and an organization / healthcare provider(s) during which time encounters may occur.
|
class |
EventDefinition
The EventDefinition resource provides a reusable description of when a particular event can occur.
|
class |
ExampleScenario
Example of workflow instance.
|
class |
ExplanationOfBenefit
This resource provides: the claim details; adjudication details from the processing of a Claim; and optionally account balance information, for informing the subscriber of the benefits provided.
|
class |
FamilyMemberHistory
Significant health conditions for a person related to the patient relevant in the context of care for the patient.
|
class |
Flag
Prospective warnings of potential issues when providing care to the patient.
|
class |
Goal
Describes the intended objective(s) for a patient, group or organization care, for example, weight loss, restoring an activity of daily living, obtaining herd immunity via immunization, meeting a process improvement objective, etc.
|
class |
GraphDefinition
A formal computable definition of a graph of resources - that is, a coherent set of resources that form a graph by following references.
|
class |
Group
Represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively, and are not formally or legally recognized; i.e.
|
class |
GuidanceResponse
A guidance response is the formal response to a guidance request, including any output parameters returned by the evaluation, as well as the description of any proposed actions to be taken.
|
class |
HealthcareService
The details of a healthcare service available at a location.
|
class |
ImagingStudy
Representation of the content produced in a DICOM imaging study.
|
class |
Immunization
Describes the event of a patient being administered a vaccine or a record of an immunization as reported by a patient, a clinician or another party.
|
class |
ImmunizationEvaluation
Describes a comparison of an immunization event against published recommendations to determine if the administration is "valid" in relation to those recommendations.
|
class |
ImmunizationRecommendation
A patient's point-in-time set of recommendations (i.e.
|
class |
ImplementationGuide
A set of rules of how FHIR is used to solve a particular problem.
|
class |
InsurancePlan
Details of a Health Insurance product/plan provided by an organization.
|
class |
Invoice
Invoice containing collected ChargeItems from an Account with calculated individual and total price for Billing purpose.
|
class |
ItemInstance
A physical, countable instance of an item, for example one box or one unit.
|
class |
Library
The Library resource is a general-purpose container for knowledge asset definitions.
|
class |
Linkage
Identifies two or more records (resource instances) that are referring to the same real-world "occurrence".
|
class |
ListResource
A set of information summarized from a list of other resources.
|
class |
Location
Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained, or accommodated.
|
class |
Measure
The Measure resource provides the definition of a quality measure.
|
class |
MeasureReport
The MeasureReport resource contains the results of the calculation of a measure; and optionally a reference to the resources involved in that calculation.
|
class |
Media
A photo, video, or audio recording acquired or used in healthcare.
|
class |
Medication
This resource is primarily used for the identification and definition of a medication for the purposes of prescribing, dispensing, and administering a medication as well as for making statements about medication use.
|
class |
MedicationAdministration
Describes the event of a patient consuming or otherwise being administered a medication.
|
class |
MedicationDispense
Indicates that a medication product is to be or has been dispensed for a named person/patient.
|
class |
MedicationKnowledge
Information about a medication that is used to support knowledge.
|
class |
MedicationRequest
An order or request for both supply of the medication and the instructions for administration of the medication to a patient.
|
class |
MedicationStatement
A record of a medication that is being consumed by a patient.
|
class |
MedicinalProduct
Detailed definition of a medicinal product, typically for uses other than direct patient care (e.g.
|
class |
MedicinalProductAuthorization
The regulatory authorization of a medicinal product.
|
class |
MedicinalProductClinicals
The clinical particulars - indications, contraindications etc.
|
class |
MedicinalProductContraindication
The clinical particulars - indications, contraindications etc.
|
class |
MedicinalProductDeviceSpec
A detailed description of a device, typically as part of a regulated medicinal product.
|
class |
MedicinalProductIndication
Indication for the Medicinal Product.
|
class |
MedicinalProductIngredient
An ingredient of a manufactured item or pharmaceutical product.
|
class |
MedicinalProductInteraction
The interactions of the medicinal product with other medicinal products, or other forms of interactions.
|
class |
MedicinalProductManufactured
The manufactured item as contained in the packaged medicinal product.
|
class |
MedicinalProductPackaged
A medicinal product in a container or package.
|
class |
MedicinalProductPharmaceutical
A pharmaceutical product described in terms of its composition and dose form.
|
class |
MedicinalProductUndesirableEffect
Describe the undesirable effects of the medicinal product.
|
class |
MessageDefinition
Defines the characteristics of a message that can be shared between systems, including the type of event that initiates the message, the content to be transmitted and what response(s), if any, are permitted.
|
class |
MessageHeader
The header for a message exchange that is either requesting or responding to an action.
|
class |
MetadataResource
Common Ancestor declaration for conformance and knowledge artifact resources.
|
class |
NamingSystem
A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc.
|
class |
NutritionOrder
A request to supply a diet, formula feeding (enteral) or oral nutritional supplement to a patient/resident.
|
class |
Observation
Measurements and simple assertions made about a patient, device or other subject.
|
class |
ObservationDefinition
Set of definitional characteristics for a kind of observation or measurement produced or consumed by an orderable health care service.
|
class |
OperationDefinition
A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
|
class |
OperationOutcome
A collection of error, warning or information messages that result from a system action.
|
class |
Organization
A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action.
|
class |
OrganizationAffiliation
Defines an affiliation/assotiation/relationship between 2 distinct oganizations, that is not a part-of relationship/sub-division relationship.
|
class |
Parameters
This special resource type is used to represent an operation request and response (operations.html).
|
class |
Patient
Demographics and other administrative information about an individual or animal receiving care or other health-related services.
|
class |
PaymentNotice
This resource provides the status of the payment for goods and services rendered, and the request and response resource references.
|
class |
PaymentReconciliation
This resource provides payment details and claim references supporting a bulk payment.
|
class |
Person
Demographics and administrative information about a person independent of a specific health-related context.
|
class |
PlanDefinition
This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact.
|
class |
Practitioner
A person who is directly or indirectly involved in the provisioning of healthcare.
|
class |
PractitionerRole
A specific set of Roles/Locations/specialties/services that a practitioner may perform at an organization for a period of time.
|
class |
Procedure
An action that is or was performed on or for a patient.
|
class |
ProcessRequest
This resource provides the target, request and response, and action details for an action to be performed by the target on or about existing resources.
|
class |
ProcessResponse
This resource provides processing status, errors and notes from the processing of a resource.
|
class |
Provenance
Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource.
|
class |
Questionnaire
A structured set of questions intended to guide the collection of answers from end-users.
|
class |
QuestionnaireResponse
A structured set of questions and their answers.
|
class |
RelatedPerson
Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process.
|
class |
RequestGroup
A group of related requests that can be used to capture intended activities that have inter-dependencies such as "give this medication after that one".
|
class |
ResearchStudy
A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge.
|
class |
ResearchSubject
A physical entity which is the primary unit of operational and/or administrative interest in a study.
|
class |
RiskAssessment
An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.
|
class |
Schedule
A container for slots of time that may be available for booking appointments.
|
class |
SearchParameter
A search parameter that defines a named search item that can be used to search/filter on a resource.
|
class |
Sequence
Raw data describing a biological sequence.
|
class |
ServiceRequest
A record of a request for service such as diagnostic investigations, treatments, or operations to be performed.
|
class |
Slot
A slot of time on a schedule that may be available for booking appointments.
|
class |
Specimen
A sample to be used for analysis.
|
class |
SpecimenDefinition
A kind of specimen with associated set of requirements.
|
class |
StructureDefinition
A definition of a FHIR structure.
|
class |
StructureMap
A Map of relationships between 2 structures that can be used to transform data.
|
class |
Subscription
The subscription resource is used to define a push-based subscription from a server to another system.
|
class |
Substance
A homogeneous material with a definite composition.
|
class |
SubstancePolymer
Todo.
|
class |
SubstanceReferenceInformation
Todo.
|
class |
SubstanceSpecification
The detailed description of a substance, typically at a level beyond what is used for prescribing.
|
class |
SupplyDelivery
Record of delivery of what is supplied.
|
class |
SupplyRequest
A record of a request for a medication, substance or device used in the healthcare setting.
|
class |
Task
A task to be performed.
|
class |
TerminologyCapabilities
A Terminology Capabilities documents a set of capabilities (behaviors) of a FHIR Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
|
class |
TestReport
A summary of information based on the results of executing a TestScript.
|
class |
TestScript
A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.
|
class |
UserSession
Information about a user's current session.
|
class |
ValueSet
A ValueSet resource instances specifies a set of codes drawn from one or more code systems, intended for use in a particular context.
|
class |
VerificationResult
Describes validation requirements, source(s), status and dates for one or more elements.
|
class |
VisionPrescription
An authorization for the supply of glasses and/or contact lenses to a patient.
|
| Modifier and Type | Field and Description |
|---|---|
protected Resource |
Invoice.InvoiceParticipantComponent.actorTarget
The actual object that is the target of the reference (The device, practitioner, etc.
|
protected Resource |
ImagingStudy.ImagingStudySeriesPerformerComponent.actorTarget
The actual object that is the target of the reference (Indicates who or what performed the series.)
|
protected Resource |
MedicationDispense.MedicationDispensePerformerComponent.actorTarget
The actual object that is the target of the reference (The device, practitioner, etc.
|
protected Resource |
ChargeItem.ChargeItemPerformerComponent.actorTarget
The actual object that is the target of the reference (The device, practitioner, etc.
|
protected Resource |
Procedure.ProcedurePerformerComponent.actorTarget
The actual object that is the target of the reference (The practitioner who was involved in the procedure.)
|
protected Resource |
MedicationAdministration.MedicationAdministrationPerformerComponent.actorTarget
The actual object that is the target of the reference (Indicates who or what performed the medication administration.)
|
protected Resource |
Immunization.ImmunizationPerformerComponent.actorTarget
The actual object that is the target of the reference (The practitioner or organization who performed the action.)
|
protected Resource |
AppointmentResponse.actorTarget
The actual object that is the target of the reference (A Person, Location, HealthcareService, or Device that is participating in the appointment.)
|
protected Resource |
Appointment.AppointmentParticipantComponent.actorTarget
The actual object that is the target of the reference (A Person, Location/HealthcareService or Device that is participating in the appointment.)
|
protected Resource |
Procedure.asserterTarget
The actual object that is the target of the reference (Individual who is making the procedure statement.)
|
protected Resource |
AllergyIntolerance.asserterTarget
The actual object that is the target of the reference (The source of the information about the allergy that is recorded.)
|
protected Resource |
Condition.asserterTarget
The actual object that is the target of the reference (Individual who is making the condition statement.)
|
protected Resource |
DocumentReference.authenticatorTarget
The actual object that is the target of the reference (Which person or organization authenticates that this document is valid.)
|
protected Resource |
QuestionnaireResponse.authorTarget
The actual object that is the target of the reference (Person who received the answers to the questions in the QuestionnaireResponse and recorded them in the system.)
|
protected Resource |
Linkage.authorTarget
The actual object that is the target of the reference (Identifies the user or organization responsible for asserting the linkages and who establishes the context for evaluating the nature of each linkage.)
|
protected Resource |
Flag.authorTarget
The actual object that is the target of the reference (The person, organization or device that created the flag.)
|
protected Resource |
CarePlan.authorTarget
The actual object that is the target of the reference (When populated, the author is responsible for the care plan.
|
protected Resource |
AdverseEvent.AdverseEventSuspectEntityCausalityComponent.authorTarget
The actual object that is the target of the reference (AdverseEvent.suspectEntity.causalityAuthor.)
|
protected Resource |
Contract.authorTarget
The actual object that is the target of the reference (The individual or organization that authored the Contract definition, derivative, or instance in any legal state.)
|
protected Resource |
RequestGroup.authorTarget
The actual object that is the target of the reference (Provides a reference to the author of the request group.)
|
protected Resource |
DetectedIssue.authorTarget
The actual object that is the target of the reference (Individual or device responsible for the issue being raised.
|
protected Resource |
Basic.authorTarget
The actual object that is the target of the reference (Indicates who was responsible for creating the resource instance.)
|
protected Resource |
RiskAssessment.basedOnTarget
The actual object that is the target of the reference (A reference to the request that is fulfilled by this risk assessment.)
|
protected Resource |
BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent.collectorTarget
The actual object that is the target of the reference (HealthCare Professional performing collection.)
|
protected Resource |
Encounter.DiagnosisComponent.conditionTarget
The actual object that is the target of the reference (Reason the encounter takes place, as specified using information from another resource.
|
protected Resource |
MedicationStatement.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this MedicationStatement.)
|
protected Resource |
GuidanceResponse.contextTarget
The actual object that is the target of the reference (Allows the context of the guidance response to be provided if available.
|
protected Resource |
ImagingStudy.contextTarget
The actual object that is the target of the reference (The encounter or episode at which the request is initiated.)
|
protected Resource |
MedicationDispense.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this event.)
|
protected Resource |
ChargeItem.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this event.)
|
protected Resource |
QuestionnaireResponse.contextTarget
The actual object that is the target of the reference (The encounter or episode of care with primary association to the questionnaire response.)
|
protected Resource |
DiagnosticReport.contextTarget
The actual object that is the target of the reference (The healthcare event (e.g.
|
protected Resource |
Procedure.contextTarget
The actual object that is the target of the reference (The encounter during which the procedure was performed.)
|
protected Resource |
RiskAssessment.contextTarget
The actual object that is the target of the reference (The encounter where the assessment was performed.)
|
protected Resource |
Media.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this media.)
|
protected Resource |
CommunicationRequest.contextTarget
The actual object that is the target of the reference (The encounter or episode of care within which the communication request was created.)
|
protected Resource |
CarePlan.contextTarget
The actual object that is the target of the reference (Identifies the original context in which this particular care plan was created.)
|
protected Resource |
ServiceRequest.contextTarget
The actual object that is the target of the reference (An encounter or episode of care that provides additional information about the healthcare context in which this request is made.)
|
protected Resource |
AdverseEvent.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this AdverseEvent.)
|
protected Resource |
MedicationAdministration.contextTarget
The actual object that is the target of the reference (The visit, admission, or other contact between patient and health care provider during which the medication administration was performed.)
|
protected Resource |
CareTeam.contextTarget
The actual object that is the target of the reference (The encounter or episode of care that establishes the context for this care team.)
|
protected Resource |
Contract.ActionComponent.contextTarget
The actual object that is the target of the reference (Encounter or Episode with primary association to specified term activity.)
|
protected Resource |
DeviceRequest.contextTarget
The actual object that is the target of the reference (An encounter that provides additional context in which this request is made.)
|
protected Resource |
RequestGroup.contextTarget
The actual object that is the target of the reference (Describes the context of the request group, if any.)
|
protected Resource |
NutritionOrder.contextTarget
The actual object that is the target of the reference (An encounter that provides additional information about the healthcare context in which this request is made.)
|
protected Resource |
Communication.contextTarget
The actual object that is the target of the reference (The encounter within which the communication was sent.)
|
protected Resource |
Task.contextTarget
The actual object that is the target of the reference (The healthcare event (e.g.
|
protected Resource |
ClinicalImpression.contextTarget
The actual object that is the target of the reference (The encounter or episode of care this impression was created as part of.)
|
protected Resource |
MedicationRequest.contextTarget
The actual object that is the target of the reference (A link to an encounter, or episode of care, that identifies the particular occurrence or set occurrences of contact between patient and health care provider.)
|
protected Resource |
Condition.contextTarget
The actual object that is the target of the reference (Encounter during which the condition was first asserted.)
|
protected Resource |
SupplyRequest.deliverFromTarget
The actual object that is the target of the reference (Where the supply is expected to come from.)
|
protected Resource |
SupplyRequest.deliverToTarget
The actual object that is the target of the reference (Where the supply is destined to go.)
|
protected Resource |
Encounter.EncounterHospitalizationComponent.destinationTarget
The actual object that is the target of the reference (Location/organization to which the patient is discharged.)
|
protected Resource |
Observation.deviceTarget
The actual object that is the target of the reference (The device used to generate the observation data.)
|
protected Resource |
Media.deviceTarget
The actual object that is the target of the reference (The device used to collect the media.)
|
protected Resource |
ChargeItem.entererTarget
The actual object that is the target of the reference (The device, practitioner, etc.
|
protected Resource |
ExplanationOfBenefit.entererTarget
The actual object that is the target of the reference (The person who created the explanation of benefit.)
|
protected Resource |
CoverageEligibilityRequest.entererTarget
The actual object that is the target of the reference (Person who created the invoice/claim/pre-determination or pre-authorization.)
|
protected Resource |
Claim.entererTarget
The actual object that is the target of the reference (Person who created the invoice/claim/pre-determination or pre-authorization.)
|
protected Resource |
Group.GroupMemberComponent.entityTarget
The actual object that is the target of the reference (A reference to the entity that is a member of the group.
|
protected Resource |
Goal.expressedByTarget
The actual object that is the target of the reference (Indicates whose goal this is - patient goal, practitioner goal, etc.)
|
protected Resource |
CoverageEligibilityRequest.DetailsComponent.facilityTarget
The actual object that is the target of the reference (Facility where the services were provided.)
|
protected Resource |
Task.focusTarget
The actual object that is the target of the reference (The request being actioned or the resource being manipulated by this task.)
|
protected Resource |
Task.for_Target
The actual object that is the target of the reference (The entity who benefits from the performance of the service specified in the task (e.g., the patient).)
|
protected Resource |
Encounter.EncounterParticipantComponent.individualTarget
The actual object that is the target of the reference (Persons involved in the encounter other than the patient.)
|
protected Resource |
MedicationStatement.informationSourceTarget
The actual object that is the target of the reference (The person or organization that provided the information about the taking of this medication.
|
protected Resource |
CoverageEligibilityRequest.InformationComponent.informationTarget
The actual object that is the target of the reference (Additional data or information such as resources, documents, images etc.
|
protected Resource |
AdverseEvent.AdverseEventSuspectEntityComponent.instanceTarget
The actual object that is the target of the reference (Identifies the actual instance of what caused the adverse event.
|
protected Resource |
ClinicalImpression.ClinicalImpressionFindingComponent.itemReferenceTarget
The actual object that is the target of the reference (Specific reference for finding or diagnosis, which may include ruled-out or resolved conditions.)
|
protected Resource |
ListResource.ListEntryComponent.itemTarget
The actual object that is the target of the reference (A reference to the actual resource from which data was derived.)
|
protected Resource |
CareTeam.CareTeamParticipantComponent.memberTarget
The actual object that is the target of the reference (The specific person or organization who is participating/expected to participate in the care team.)
|
protected Resource |
AuditEvent.AuditEventSourceComponent.observerTarget
The actual object that is the target of the reference (Identifier of the source where the event was detected.)
|
protected Resource |
Provenance.ProvenanceAgentComponent.onBehalfOfTarget
The actual object that is the target of the reference (The individual, device, or organization for whom the change was made.)
|
protected Resource |
Signature.onBehalfOfTarget
The actual object that is the target of the reference (A reference to an application-usable description of the identity that is represented by the signature.)
|
protected Resource |
Media.operatorTarget
The actual object that is the target of the reference (The person who administered the collection of the image.)
|
protected Resource |
NutritionOrder.ordererTarget
The actual object that is the target of the reference (The practitioner that holds legal responsibility for ordering the diet, nutritional supplement, or formula feedings.)
|
protected Resource |
Encounter.EncounterHospitalizationComponent.originTarget
The actual object that is the target of the reference (The location/organization from which the patient came before admission.)
|
protected Resource |
Patient.PatientLinkComponent.otherTarget
The actual object that is the target of the reference (The other patient resource that the link refers to.)
|
protected Resource |
Bundle.BundleEntryResponseComponent.outcome
An OperationOutcome containing hints and warnings produced as part of processing this entry in a batch or transaction.
|
protected Resource |
Task.ownerTarget
The actual object that is the target of the reference (Individual organization or Device currently responsible for task execution.)
|
protected Resource |
RiskAssessment.parentTarget
The actual object that is the target of the reference (A reference to a resource that this risk assessment is part of, such as a Procedure.)
|
protected Resource |
BiologicallyDerivedProduct.parentTarget
The actual object that is the target of the reference (Parent product (if any).)
|
protected Resource |
Contract.SignatoryComponent.partyTarget
The actual object that is the target of the reference (Party which is a signator to this Contract.)
|
protected Resource |
ExplanationOfBenefit.PayeeComponent.partyTarget
The actual object that is the target of the reference (Party to be reimbursed: Subscriber, provider, other.)
|
protected Resource |
Composition.CompositionAttesterComponent.partyTarget
The actual object that is the target of the reference (Who attested the composition in the specified way.)
|
protected Resource |
Account.GuarantorComponent.partyTarget
The actual object that is the target of the reference (The entity who is responsible.)
|
protected Resource |
Claim.PayeeComponent.partyTarget
The actual object that is the target of the reference (Party to be reimbursed: Subscriber, provider, other.)
|
protected Resource |
RiskAssessment.performerTarget
The actual object that is the target of the reference (The provider or software application that performed the assessment.)
|
protected Resource |
Contract.ActionComponent.performerTarget
The actual object that is the target of the reference (Indicates who or what is being asked to perform (or not perform) the ction.)
|
protected Resource |
DeviceRequest.performerTarget
The actual object that is the target of the reference (The desired performer for doing the diagnostic testing.)
|
protected Resource |
MedicationRequest.performerTarget
The actual object that is the target of the reference (The specified desired performer of the medication treatment (e.g.
|
protected Resource |
Coverage.policyHolderTarget
The actual object that is the target of the reference (The party who 'owns' the insurance policy, may be an individual, corporation or the subscriber's employer.)
|
protected Resource |
VisionPrescription.prescriberTarget
The actual object that is the target of the reference (The healthcare professional responsible for authorizing the prescription.)
|
protected Resource |
ExplanationOfBenefit.prescriptionTarget
The actual object that is the target of the reference (Prescription to support the dispensing of Pharmacy or Vision products.)
|
protected Resource |
Claim.prescriptionTarget
The actual object that is the target of the reference (Prescription to support the dispensing of Pharmacy or Vision products.)
|
protected Resource |
ProcessRequest.providerTarget
The actual object that is the target of the reference (The practitioner who is responsible for the action specified in this request.)
|
protected Resource |
CoverageEligibilityResponse.ItemsComponent.providerTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
EnrollmentRequest.providerTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
ExplanationOfBenefit.providerTarget
The actual object that is the target of the reference (The provider which is responsible for the claim.)
|
protected Resource |
ExplanationOfBenefit.CareTeamComponent.providerTarget
The actual object that is the target of the reference (The members of the team who provided the overall service.)
|
protected Resource |
CoverageEligibilityRequest.providerTarget
The actual object that is the target of the reference (The provider who is responsible for the services rendered to the patient.)
|
protected Resource |
CoverageEligibilityRequest.DetailsComponent.providerTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
PaymentNotice.providerTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
Claim.providerTarget
The actual object that is the target of the reference (The provider which is responsible for the bill, claim pre-determination, pre-authorization.)
|
protected Resource |
Claim.CareTeamComponent.providerTarget
The actual object that is the target of the reference (Member of the team who provided the overall service.)
|
protected Resource |
Contract.ContentDefinitionComponent.publisherTarget
The actual object that is the target of the reference (The individual or organization that published the Contract precursor content.)
|
protected Resource |
Task.reasonReferenceTarget
The actual object that is the target of the reference (A resource reference indicating why this task needs to be performed.)
|
protected Resource |
MessageHeader.MessageDestinationComponent.receiverTarget
The actual object that is the target of the reference (Allows data conveyed by a message to be addressed to a particular person or department when routing to a specific application isn't sufficient.)
|
protected Resource |
Invoice.recipientTarget
The actual object that is the target of the reference (The individual or Organization responsible for balancing of this invoice.)
|
protected Resource |
Contract.ValuedItemComponent.recipientTarget
The actual object that is the target of the reference (Who will receive payment.)
|
protected Resource |
Procedure.recorderTarget
The actual object that is the target of the reference (Individual who recorded the record and takes responsibility for its content.)
|
protected Resource |
AdverseEvent.recorderTarget
The actual object that is the target of the reference (Information on who recorded the adverse event.
|
protected Resource |
AllergyIntolerance.recorderTarget
The actual object that is the target of the reference (Individual who recorded the record and takes responsibility for its content.)
|
protected Resource |
Condition.recorderTarget
The actual object that is the target of the reference (Individual who recorded the record and takes responsibility for its content.)
|
protected Resource |
CatalogEntry.referencedItemTarget
The actual object that is the target of the reference (The item in a catalog or definition.)
|
protected Resource |
ImplementationGuide.ImplementationGuideDefinitionResourceComponent.referenceTarget
The actual object that is the target of the reference (Where this resource is found.)
|
protected Resource |
ImplementationGuide.ManifestResourceComponent.referenceTarget
The actual object that is the target of the reference (Where this resource is found.)
|
protected Resource |
CarePlan.CarePlanActivityComponent.referenceTarget
The actual object that is the target of the reference (The details of the proposed activity represented in a specific resource.)
|
protected Resource |
Contract.AssetContextComponent.referenceTarget
The actual object that is the target of the reference (Asset context reference may include the creator, custodian, or owning Person or Organization (e.g., bank, repository), location held, e.g., building, jurisdiction.)
|
protected Resource |
Consent.provisionActorComponent.referenceTarget
The actual object that is the target of the reference (The resource that identifies the actor.
|
protected Resource |
Consent.provisionDataComponent.referenceTarget
The actual object that is the target of the reference (A reference to a specific resource that defines which resources are covered by this consent.)
|
protected Resource |
DocumentManifest.DocumentManifestRelatedComponent.refTarget
The actual object that is the target of the reference (Related Resource to this DocumentManifest.
|
protected Resource |
MeasureReport.reporterTarget
The actual object that is the target of the reference (The individual, location, or organization that is reporting the data.)
|
protected Resource |
CommunicationRequest.requesterTarget
The actual object that is the target of the reference (The device, individual, or organization who initiated the request and has responsibility for its activation.)
|
protected Resource |
ServiceRequest.requesterTarget
The actual object that is the target of the reference (The individual who initiated the request and has responsibility for its activation.)
|
protected Resource |
DeviceRequest.requesterTarget
The actual object that is the target of the reference (The individual who initiated the request and has responsibility for its activation.)
|
protected Resource |
Task.requesterTarget
The actual object that is the target of the reference (The creator of the task.)
|
protected Resource |
MedicationRequest.requesterTarget
The actual object that is the target of the reference (The individual, organization, or device that initiated the request and has responsibility for its activation.)
|
protected Resource |
SupplyRequest.requesterTarget
The actual object that is the target of the reference (The device, practitioner, etc.
|
protected Resource |
ProcessResponse.requestProviderTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
CoverageEligibilityResponse.requestProviderTarget
The actual object that is the target of the reference (The provider who is responsible for the services rendered to the patient.)
|
protected Resource |
PaymentReconciliation.requestProviderTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
EnrollmentResponse.requestProviderTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
ClaimResponse.requestProviderTarget
The actual object that is the target of the reference (The practitioner who is responsible for the services rendered to the patient.)
|
protected Resource |
ProcessResponse.requestTarget
The actual object that is the target of the reference (Original request resource reference.)
|
protected Resource |
ProcessRequest.requestTarget
The actual object that is the target of the reference (Reference of resource which is the target or subject of this action.)
|
protected Resource |
PaymentReconciliation.DetailsComponent.requestTarget
The actual object that is the target of the reference (The claim or financial resource.)
|
protected Resource |
PaymentNotice.requestTarget
The actual object that is the target of the reference (Reference of resource for which payment is being made.)
|
protected Resource |
Parameters.ParametersParameterComponent.resource
If the parameter is a whole resource.
|
protected Resource |
Bundle.BundleEntryComponent.resource
The Resource for the entry.
|
protected Resource |
TestScript.TestScriptFixtureComponent.resourceTarget
The actual object that is the target of the reference (Reference to the resource (containing the contents of the resource needed for operations).)
|
protected Resource |
TestScript.TestScriptRuleComponent.resourceTarget
The actual object that is the target of the reference (Reference to the resource (containing the contents of the rule needed for assertions).)
|
protected Resource |
TestScript.TestScriptRulesetComponent.resourceTarget
The actual object that is the target of the reference (Reference to the resource (containing the contents of the ruleset needed for assertions).)
|
protected Resource |
Linkage.LinkageItemComponent.resourceTarget
The actual object that is the target of the reference (The resource instance being linked as part of the group.)
|
protected Resource |
RequestGroup.RequestGroupActionComponent.resourceTarget
The actual object that is the target of the reference (The resource that is the target of the action (e.g.
|
protected Resource |
ProcessRequest.responseTarget
The actual object that is the target of the reference (Reference of a prior response to resource which is the target or subject of this action.)
|
protected Resource |
PaymentReconciliation.DetailsComponent.responseTarget
The actual object that is the target of the reference (The claim response resource.)
|
protected Resource |
PaymentNotice.responseTarget
The actual object that is the target of the reference (Reference of response to resource for which payment is being made.)
|
protected Resource |
Contract.ValuedItemComponent.responsibleTarget
The actual object that is the target of the reference (Who will make payment.)
|
protected Resource |
MessageHeader.responsibleTarget
The actual object that is the target of the reference (The person or organization that accepts overall responsibility for the contents of the message.
|
protected Resource |
GuidanceResponse.resultTarget
The actual object that is the target of the reference (The actions, if any, produced by the evaluation of the artifact.)
|
protected Resource |
Binary.securityContextTarget
The actual object that is the target of the reference (This element identifies another resource that can be used as a proxy of the security sensitivity to use when deciding and enforcing access control rules for the Binary resource.
|
protected Resource |
CommunicationRequest.senderTarget
The actual object that is the target of the reference (The entity (e.g.
|
protected Resource |
Communication.senderTarget
The actual object that is the target of the reference (The entity (e.g.
|
protected Resource |
MessageHeader.senderTarget
The actual object that is the target of the reference (Identifies the sending system to allow the use of a trust relationship.)
|
protected Resource |
ListResource.sourceTarget
The actual object that is the target of the reference (The entity responsible for deciding what the contents of the list were.
|
protected Resource |
QuestionnaireResponse.sourceTarget
The actual object that is the target of the reference (The person who answered the questions about the subject.)
|
protected Resource |
MedicationKnowledge.MedicationKnowledgeMonographComponent.sourceTarget
The actual object that is the target of the reference (Associated documentation about the medication.)
|
protected Resource |
DeviceUseStatement.sourceTarget
The actual object that is the target of the reference (Who reported the device was being used by the patient.)
|
protected Resource |
BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent.sourceTarget
The actual object that is the target of the reference (Person or entity providing product.)
|
protected Resource |
MedicationStatement.subjectTarget
The actual object that is the target of the reference (The person, animal or group who is/was taking the medication.)
|
protected Resource |
Invoice.subjectTarget
The actual object that is the target of the reference (The individual or set of individuals receiving the goods and services billed in this invoice.)
|
protected Resource |
ListResource.subjectTarget
The actual object that is the target of the reference (The common subject (or patient) of the resources that are in the list if there is one.)
|
protected Resource |
GuidanceResponse.subjectTarget
The actual object that is the target of the reference (The patient for which the request was processed.)
|
protected Resource |
ImagingStudy.subjectTarget
The actual object that is the target of the reference (The subject, typically a patient, of the imaging study.)
|
protected Resource |
MedicationDispense.subjectTarget
The actual object that is the target of the reference (A link to a resource representing the person or the group to whom the medication will be given.)
|
protected Resource |
ChargeItem.subjectTarget
The actual object that is the target of the reference (The individual or set of individuals the action is being or was performed on.)
|
protected Resource |
QuestionnaireResponse.subjectTarget
The actual object that is the target of the reference (The subject of the questionnaire response.
|
protected Resource |
Observation.subjectTarget
The actual object that is the target of the reference (The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed.
|
protected Resource |
DiagnosticReport.subjectTarget
The actual object that is the target of the reference (The subject of the report.
|
protected Resource |
Procedure.subjectTarget
The actual object that is the target of the reference (The person, animal or group on which the procedure was performed.)
|
protected Resource |
Flag.subjectTarget
The actual object that is the target of the reference (The patient, location, group, organization, or practitioner etc.
|
protected Resource |
RiskAssessment.subjectTarget
The actual object that is the target of the reference (The patient or group the risk assessment applies to.)
|
protected Resource |
DocumentManifest.subjectTarget
The actual object that is the target of the reference (Who or what the set of documents is about.
|
protected Resource |
Media.subjectTarget
The actual object that is the target of the reference (Who/What this Media is a record of.)
|
protected Resource |
CommunicationRequest.subjectTarget
The actual object that is the target of the reference (The patient or group that is the focus of this communication request.)
|
protected Resource |
CarePlan.subjectTarget
The actual object that is the target of the reference (Identifies the patient or group whose intended care is described by the plan.)
|
protected Resource |
ServiceRequest.subjectTarget
The actual object that is the target of the reference (On whom or what the service is to be performed.
|
protected Resource |
AdverseEvent.subjectTarget
The actual object that is the target of the reference (This subject or group impacted by the event.)
|
protected Resource |
MedicationAdministration.subjectTarget
The actual object that is the target of the reference (The person or animal or group receiving the medication.)
|
protected Resource |
Goal.subjectTarget
The actual object that is the target of the reference (Identifies the patient, group or organization for whom the goal is being established.)
|
protected Resource |
CareTeam.subjectTarget
The actual object that is the target of the reference (Identifies the patient or group whose intended care is handled by the team.)
|
protected Resource |
DeviceRequest.subjectTarget
The actual object that is the target of the reference (The patient who will use the device.)
|
protected Resource |
RequestGroup.subjectTarget
The actual object that is the target of the reference (The subject for which the request group was created.)
|
protected Resource |
MedicinalProductAuthorization.subjectTarget
The actual object that is the target of the reference (The medicinal product that is being authorized.)
|
protected Resource |
Communication.subjectTarget
The actual object that is the target of the reference (The patient or group that was the focus of this communication.)
|
protected Resource |
DocumentReference.subjectTarget
The actual object that is the target of the reference (Who or what the document is about.
|
protected Resource |
Encounter.subjectTarget
The actual object that is the target of the reference (The patient or group present at the encounter.)
|
protected Resource |
ClinicalImpression.subjectTarget
The actual object that is the target of the reference (The patient or group of individuals assessed as part of this record.)
|
protected Resource |
DeviceUseStatement.subjectTarget
The actual object that is the target of the reference (The patient who used the device.)
|
protected Resource |
Basic.subjectTarget
The actual object that is the target of the reference (Identifies the patient, practitioner, device or any other resource that is the "focus" of this resource.)
|
protected Resource |
Composition.subjectTarget
The actual object that is the target of the reference (Who or what the composition is about.
|
protected Resource |
MedicationRequest.subjectTarget
The actual object that is the target of the reference (A link to a resource representing the person or set of individuals to whom the medication will be given.)
|
protected Resource |
MeasureReport.subjectTarget
The actual object that is the target of the reference (Optional subject identifying the individual or individuals the report is for.)
|
protected Resource |
Specimen.subjectTarget
The actual object that is the target of the reference (Where the specimen came from.
|
protected Resource |
Condition.subjectTarget
The actual object that is the target of the reference (Indicates the patient or group who the condition record is associated with.)
|
protected Resource |
Coverage.subscriberTarget
The actual object that is the target of the reference (The party who has signed-up for or 'owns' the contractual relationship to the policy or to whom the benefit of the policy for services rendered to them or their family is due.)
|
protected Resource |
SupplyDelivery.supplierTarget
The actual object that is the target of the reference (The individual responsible for dispensing the medication, supplier or device.)
|
protected Resource |
Person.PersonLinkComponent.targetTarget
The actual object that is the target of the reference (The resource to which this actual person is associated.)
|
protected Resource |
Contract.ContractOfferComponent.topicTarget
The actual object that is the target of the reference (The owner of an asset has the residual control rights over the asset: the right to decide all usages of the asset in any way not inconsistent with a prior contract, custom, or law (Hart, 1995, p.
|
protected Resource |
UserSession.userTarget
The actual object that is the target of the reference (A practitioner, patient, device, or related person engaged in the session.)
|
protected Resource |
Consent.ConsentVerificationComponent.verifiedWithTarget
The actual object that is the target of the reference (Who verified the instruction (Patient, Relative or other Authorized Person).)
|
protected Resource |
Provenance.ProvenanceEntityComponent.whatTarget
The actual object that is the target of the reference (Identity of the Entity used.
|
protected Resource |
AuditEvent.AuditEventEntityComponent.whatTarget
The actual object that is the target of the reference (Identifies a specific instance of the entity.
|
protected Resource |
DocumentManifest.DocumentManifestAgentComponent.whoTarget
The actual object that is the target of the reference (Identifies who is the agent.
|
protected Resource |
Provenance.ProvenanceAgentComponent.whoTarget
The actual object that is the target of the reference (The individual, device or organization that participated in the event.)
|
protected Resource |
AuditEvent.AuditEventAgentComponent.whoTarget
The actual object that is the target of the reference (Reference to who this agent is that was involved in the event.)
|
protected Resource |
DocumentReference.DocumentReferenceAgentComponent.whoTarget
The actual object that is the target of the reference (Identifies who is responsible for adding the information to the document.)
|
protected Resource |
Signature.whoTarget
The actual object that is the target of the reference (A reference to an application-usable description of the identity that signed (e.g.
|
| Modifier and Type | Field and Description |
|---|---|
protected List<Resource> |
CommunicationRequest.aboutTarget
The actual objects that are the target of the reference (Other resources that pertain to this communication request and to which this communication request should be associated.)
|
protected List<Resource> |
Communication.aboutTarget
The actual objects that are the target of the reference (Other resources that pertain to this communication and to which this communication should be associated.)
|
protected List<Resource> |
Schedule.actorTarget
The actual objects that are the target of the reference (The resource this Schedule resource is providing availability information for.
|
protected List<Resource> |
Goal.addressesTarget
The actual objects that are the target of the reference (The identified conditions and other health record elements that are intended to be addressed by the goal.)
|
protected List<Resource> |
Condition.ConditionStageComponent.assessmentTarget
The actual objects that are the target of the reference (Reference to a formal record of the evidence on which the staging assessment is based.)
|
protected List<Resource> |
Composition.authorTarget
The actual objects that are the target of the reference (Identifies who is responsible for the information in the composition, not necessarily who typed it in.)
|
protected List<Resource> |
Composition.SectionComponent.authorTarget
The actual objects that are the target of the reference (Identifies who is responsible for the information in this section, not necessarily who typed it in.)
|
protected List<Resource> |
MedicationStatement.basedOnTarget
The actual objects that are the target of the reference (A plan, proposal or order that is fulfilled in whole or in part by this event.)
|
protected List<Resource> |
ImagingStudy.basedOnTarget
The actual objects that are the target of the reference (A list of the diagnostic requests that resulted in this imaging study being performed.)
|
protected List<Resource> |
QuestionnaireResponse.basedOnTarget
The actual objects that are the target of the reference (The order, proposal or plan that is fulfilled in whole or in part by this QuestionnaireResponse.
|
protected List<Resource> |
Observation.basedOnTarget
The actual objects that are the target of the reference (A plan, proposal or order that is fulfilled in whole or in part by this event.
|
protected List<Resource> |
DiagnosticReport.basedOnTarget
The actual objects that are the target of the reference (Details concerning a service requested.)
|
protected List<Resource> |
Procedure.basedOnTarget
The actual objects that are the target of the reference (A reference to a resource that contains details of the request for this procedure.)
|
protected List<Resource> |
Media.basedOnTarget
The actual objects that are the target of the reference (A procedure that is fulfilled in whole or in part by the creation of this media.)
|
protected List<Resource> |
CommunicationRequest.basedOnTarget
The actual objects that are the target of the reference (A plan or proposal that is fulfilled in whole or in part by this request.)
|
protected List<Resource> |
ServiceRequest.basedOnTarget
The actual objects that are the target of the reference (Plan/proposal/order fulfilled by this request.)
|
protected List<Resource> |
DeviceRequest.basedOnTarget
The actual objects that are the target of the reference (Plan/proposal/order fulfilled by this request.)
|
protected List<Resource> |
RequestGroup.basedOnTarget
The actual objects that are the target of the reference (A plan, proposal or order that is fulfilled in whole or in part by this request.)
|
protected List<Resource> |
Communication.basedOnTarget
The actual objects that are the target of the reference (An order, proposal or plan fulfilled in whole or in part by this Communication.)
|
protected List<Resource> |
Task.basedOnTarget
The actual objects that are the target of the reference (BasedOn refers to a higher-level authorization that triggered the creation of the task.
|
protected List<Resource> |
MedicationRequest.basedOnTarget
The actual objects that are the target of the reference (A plan or request that is fulfilled in whole or in part by this medication request.)
|
protected List<Resource> |
RiskAssessment.basisTarget
The actual objects that are the target of the reference (Indicates the source data considered as part of the assessment (for example, FamilyHistory, Observations, Procedures, Conditions, etc.).)
|
protected List<Resource> |
MedicinalProduct.contactTarget
The actual objects that are the target of the reference (A product specific contact, person (in a role), or an organization.)
|
protected List<Resource> |
DomainResource.contained
These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
|
protected List<Resource> |
DocumentManifest.contentTarget
The actual objects that are the target of the reference (The list of Resources that consist of the parts of this manifest.)
|
protected List<Resource> |
CarePlan.contributorTarget
The actual objects that are the target of the reference (Identifies the individual(s) or organization who provided the contents of the care plan.)
|
protected List<Resource> |
AdverseEvent.contributorTarget
The actual objects that are the target of the reference (Parties that may or should contribute or have contributed information to the adverse event, which can consist of one or more activities.
|
protected List<Resource> |
MedicationStatement.derivedFromTarget
The actual objects that are the target of the reference (Allows linking the MedicationStatement to the underlying MedicationRequest, or to other information that supports or is used to derive the MedicationStatement.)
|
protected List<Resource> |
Observation.derivedFromTarget
The actual objects that are the target of the reference (The target resource that represents a measurement from which this observation value is derived.
|
protected List<Resource> |
DeviceUseStatement.derivedFromTarget
The actual objects that are the target of the reference (Allows linking the DeviceUseStatement to the underlying Request, or to other information that supports or is used to derive the DeviceUseStatement.)
|
protected List<Resource> |
CoverageEligibilityRequest.DetailsComponent.detailTarget
The actual objects that are the target of the reference (The plan/proposal/order describing the proposed service in detail.)
|
protected List<Resource> |
Composition.CompositionEventComponent.detailTarget
The actual objects that are the target of the reference (The description and/or reference of the event(s) being documented.
|
protected List<Resource> |
Condition.ConditionEvidenceComponent.detailTarget
The actual objects that are the target of the reference (Links to other relevant information, including pathology reports.)
|
protected List<Resource> |
MedicinalProductPharmaceutical.deviceTarget
The actual objects that are the target of the reference (Accompanying device.)
|
protected List<Resource> |
MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent.deviceTarget
The actual objects that are the target of the reference (A device accompanying a medicinal product.)
|
protected List<Resource> |
DocumentReference.DocumentReferenceContextComponent.encounterTarget
The actual objects that are the target of the reference (Describes the clinical encounter or type of care that the document content is associated with.)
|
protected List<Resource> |
Composition.SectionComponent.entryTarget
The actual objects that are the target of the reference (A reference to the actual resource from which the narrative in the section is derived.)
|
protected List<Resource> |
MeasureReport.evaluatedResourceTarget
The actual objects that are the target of the reference (A reference to a Bundle containing the Resources that were used in the calculation of this measure.)
|
protected List<Resource> |
Observation.focusTarget
The actual objects that are the target of the reference (The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor.
|
protected List<Resource> |
UserSession.focusTarget
The actual objects that are the target of the reference (The current focus of the user's session.
|
protected List<Resource> |
MessageHeader.focusTarget
The actual objects that are the target of the reference (The actual data of the message - a reference to the root/focus class of the event.)
|
protected List<Resource> |
Patient.generalPractitionerTarget
The actual objects that are the target of the reference (Patient's nominated care provider.)
|
protected List<Resource> |
Observation.hasMemberTarget
The actual objects that are the target of the reference (This observation is a group observation (e.g.
|
protected List<Resource> |
DetectedIssue.implicatedTarget
The actual objects that are the target of the reference (Indicates the resource representing the current activity or proposed activity that is potentially problematic.)
|
protected List<Resource> |
Appointment.indicationTarget
The actual objects that are the target of the reference (Reason the appointment has been scheduled to take place, as specified using information from another resource.
|
protected List<Resource> |
ChargeItemDefinition.instanceTarget
The actual objects that are the target of the reference (The defined billing details in this resource pertain to the given product instance(s).)
|
protected List<Resource> |
ServiceRequest.insuranceTarget
The actual objects that are the target of the reference (Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be needed for delivering the requested service.)
|
protected List<Resource> |
DeviceRequest.insuranceTarget
The actual objects that are the target of the reference (Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.)
|
protected List<Resource> |
Task.insuranceTarget
The actual objects that are the target of the reference (Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be relevant to the Task.)
|
protected List<Resource> |
MedicationRequest.insuranceTarget
The actual objects that are the target of the reference (Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.)
|
protected List<Resource> |
ClinicalImpression.ClinicalImpressionInvestigationComponent.itemTarget
The actual objects that are the target of the reference (A record of a specific investigation that was undertaken.)
|
protected List<Resource> |
CarePlan.CarePlanActivityComponent.outcomeReferenceTarget
The actual objects that are the target of the reference (Details of the outcome or action resulting from the activity.
|
protected List<Resource> |
RequestGroup.RequestGroupActionComponent.participantTarget
The actual objects that are the target of the reference (The participant that should perform or be responsible for this action.)
|
protected List<Resource> |
MedicationStatement.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular event is a component or step.)
|
protected List<Resource> |
QuestionnaireResponse.partOfTarget
The actual objects that are the target of the reference (A procedure or observation that this questionnaire was performed as part of the execution of.
|
protected List<Resource> |
Observation.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular Observation is a component or step.
|
protected List<Resource> |
Procedure.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular procedure is a component or step.)
|
protected List<Resource> |
Media.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular event is a component or step.)
|
protected List<Resource> |
MedicationAdministration.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular event is a component or step.)
|
protected List<Resource> |
Communication.partOfTarget
The actual objects that are the target of the reference (Part of this action.)
|
protected List<Resource> |
SupplyDelivery.partOfTarget
The actual objects that are the target of the reference (A larger event of which this particular event is a component or step.)
|
protected List<Resource> |
Coverage.payorTarget
The actual objects that are the target of the reference (The program or plan underwriter or payor including both insurance and non-insurance agreements, such as patient-pay agreements.
|
protected List<Resource> |
Observation.performerTarget
The actual objects that are the target of the reference (Who was responsible for asserting the observed value as "true".)
|
protected List<Resource> |
DiagnosticReport.performerTarget
The actual objects that are the target of the reference (The diagnostic service that is responsible for issuing the report.)
|
protected List<Resource> |
CarePlan.CarePlanActivityDetailComponent.performerTarget
The actual objects that are the target of the reference (Identifies who's expected to be involved in the activity.)
|
protected List<Resource> |
ServiceRequest.performerTarget
The actual objects that are the target of the reference (The desired performer for doing the requested service.
|
protected List<Resource> |
Consent.performerTarget
The actual objects that are the target of the reference (Either the Grantor, which is the entity responsible for granting the rights listed in a Consent Directive or the Grantee, which is the entity responsible for complying with the Consent Directive, including any obligations or limitations on authorizations and enforcement of prohibitions.)
|
protected List<Resource> |
DeviceRequest.priorRequestTarget
The actual objects that are the target of the reference (The request takes the place of the referenced completed or terminated request(s).)
|
protected List<Resource> |
ClinicalImpression.problemTarget
The actual objects that are the target of the reference (This a list of the relevant problems/conditions for a patient.)
|
protected List<Resource> |
TestScript.profileTarget
The actual objects that are the target of the reference (Reference to the profile to be used for validation.)
|
protected List<Resource> |
ExplanationOfBenefit.AddedItemComponent.providerTarget
The actual objects that are the target of the reference (The providers who are authorized for the services rendered to the patient.)
|
protected List<Resource> |
ClaimResponse.AddedItemComponent.providerTarget
The actual objects that are the target of the reference (The providers who are authorized for the services rendered to the patient.)
|
protected List<Resource> |
MedicationStatement.reasonReferenceTarget
The actual objects that are the target of the reference (Condition or observation that supports why the medication is being/was taken.)
|
protected List<Resource> |
GuidanceResponse.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates the reason the request was initiated.
|
protected List<Resource> |
ImagingStudy.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies this Study.)
|
protected List<Resource> |
Procedure.reasonReferenceTarget
The actual objects that are the target of the reference (The justification of why the procedure was performed.)
|
protected List<Resource> |
FamilyMemberHistory.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates a Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that justifies this family member history event.)
|
protected List<Resource> |
RiskAssessment.reasonReferenceTarget
The actual objects that are the target of the reference (Resources supporting the reason the risk assessment was performed.)
|
protected List<Resource> |
CommunicationRequest.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies this request.)
|
protected List<Resource> |
CarePlan.CarePlanActivityDetailComponent.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource, such as the health condition(s), whose existence justifies this request and drove the inclusion of this particular activity as part of the plan.)
|
protected List<Resource> |
ServiceRequest.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource that provides a justification for why this service is being requested.
|
protected List<Resource> |
MedicationAdministration.reasonReferenceTarget
The actual objects that are the target of the reference (Condition or observation that supports why the medication was administered.)
|
protected List<Resource> |
Immunization.reasonReferenceTarget
The actual objects that are the target of the reference (Condition, Observation or DiagnosticReport that supports why the immunization was administered.)
|
protected List<Resource> |
Contract.ActionComponent.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies permitting or not permitting this action.)
|
protected List<Resource> |
DeviceRequest.reasonReferenceTarget
The actual objects that are the target of the reference (Reason or justification for the use of this device.)
|
protected List<Resource> |
RequestGroup.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies this request group.)
|
protected List<Resource> |
Communication.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies this communication.)
|
protected List<Resource> |
DeviceUseStatement.reasonReferenceTarget
The actual objects that are the target of the reference (Indicates another resource whose existence justifies this DeviceUseStatement.)
|
protected List<Resource> |
MedicationRequest.reasonReferenceTarget
The actual objects that are the target of the reference (Condition or observation that supports why the medication was ordered.)
|
protected List<Resource> |
SupplyRequest.reasonReferenceTarget
The actual objects that are the target of the reference (The reason why the supply item was requested.)
|
protected List<Resource> |
MedicationDispense.receiverTarget
The actual objects that are the target of the reference (Identifies the person who picked up the medication.
|
protected List<Resource> |
DocumentManifest.recipientTarget
The actual objects that are the target of the reference (A patient, practitioner, or organization for which this set of documents is intended.)
|
protected List<Resource> |
CommunicationRequest.recipientTarget
The actual objects that are the target of the reference (The entity (e.g.
|
protected List<Resource> |
Communication.recipientTarget
The actual objects that are the target of the reference (The entity (e.g.
|
protected List<Resource> |
Task.TaskRestrictionComponent.recipientTarget
The actual objects that are the target of the reference (For requests that are targeted to more than on potential recipient/target, for whom is fulfillment sought?)
|
protected List<Resource> |
Contract.ContractPartyComponent.referenceTarget
The actual objects that are the target of the reference (Participant in the offer.)
|
protected List<Resource> |
Contract.ActionSubjectComponent.referenceTarget
The actual objects that are the target of the reference (The entity the action is performed or not performed on or for.)
|
protected List<Resource> |
DocumentReference.DocumentReferenceContextComponent.relatedTarget
The actual objects that are the target of the reference (Related identifiers or resources associated with the DocumentReference.)
|
protected List<Resource> |
RequestGroup.replacesTarget
The actual objects that are the target of the reference (Completed or terminated request(s) whose function is taken by this new request.)
|
protected List<Resource> |
Procedure.reportTarget
The actual objects that are the target of the reference (This could be a histology result, pathology report, surgical report, etc.)
|
protected List<Resource> |
Contract.ActionComponent.requesterTarget
The actual objects that are the target of the reference (Who or what initiated the action and has responsibility for its activation.)
|
protected List<Resource> |
DiagnosticReport.resultsInterpreterTarget
The actual objects that are the target of the reference (The practitioner or organization that is responsible for the report's conclusions and interpretations.)
|
protected List<Resource> |
ChargeItem.serviceTarget
The actual objects that are the target of the reference (Indicated the rendered service that caused this charge.)
|
protected List<Resource> |
AdverseEvent.subjectMedicalHistoryTarget
The actual objects that are the target of the reference (AdverseEvent.subjectMedicalHistory.)
|
protected List<Resource> |
MedicinalProductContraindication.subjectTarget
The actual objects that are the target of the reference (The medication for which this is an indication.)
|
protected List<Resource> |
Contract.subjectTarget
The actual objects that are the target of the reference (The target entity impacted by or of interest to parties to the agreement.)
|
protected List<Resource> |
MedicinalProductInteraction.subjectTarget
The actual objects that are the target of the reference (The medication for which this is an indication.)
|
protected List<Resource> |
MedicinalProductIndication.subjectTarget
The actual objects that are the target of the reference (The medication for which this is an indication.)
|
protected List<Resource> |
Account.subjectTarget
The actual objects that are the target of the reference (Identifies the patient, device, practitioner, location or other object the account is associated with.)
|
protected List<Resource> |
MedicinalProductUndesirableEffect.subjectTarget
The actual objects that are the target of the reference (The medication for which this is an indication.)
|
protected List<Resource> |
SupplyRequest.supplierTarget
The actual objects that are the target of the reference (Who is intended to fulfill the request.)
|
protected List<Resource> |
ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent.supportingImmunizationTarget
The actual objects that are the target of the reference (Immunization event history and/or evaluation that supports the status and recommendation.)
|
protected List<Resource> |
MedicationDispense.supportingInformationTarget
The actual objects that are the target of the reference (Additional information that supports the medication being dispensed.)
|
protected List<Resource> |
ChargeItem.supportingInformationTarget
The actual objects that are the target of the reference (Further information supporting this charge.)
|
protected List<Resource> |
MedicationAdministration.supportingInformationTarget
The actual objects that are the target of the reference (Additional information (for example, patient height and weight) that supports the administration of the medication.)
|
protected List<Resource> |
MedicationRequest.supportingInformationTarget
The actual objects that are the target of the reference (Include additional information (for example, patient height and weight) that supports the ordering of the medication.)
|
protected List<Resource> |
Appointment.supportingInformationTarget
The actual objects that are the target of the reference (Additional information to support the appointment provided when making the appointment.)
|
protected List<Resource> |
CarePlan.supportingInfoTarget
The actual objects that are the target of the reference (Identifies portions of the patient's record that specifically influenced the formation of the plan.
|
protected List<Resource> |
ServiceRequest.supportingInfoTarget
The actual objects that are the target of the reference (Additional clinical information about the patient or specimen that may influence the services or their interpretations.
|
protected List<Resource> |
Contract.supportingInfoTarget
The actual objects that are the target of the reference (Information that may be needed by/relevant to the performer in their execution of this term action.)
|
protected List<Resource> |
DeviceRequest.supportingInfoTarget
The actual objects that are the target of the reference (Additional clinical information about the patient that may influence the request fulfilment.
|
protected List<Resource> |
ClinicalImpression.supportingInfoTarget
The actual objects that are the target of the reference (Information supporting the clinical impression.)
|
protected List<Resource> |
ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent.supportingPatientInformationTarget
The actual objects that are the target of the reference (Patient Information that supports the status and recommendation.
|
protected List<Resource> |
Provenance.targetTarget
The actual objects that are the target of the reference (The Reference(s) that were generated or updated by the activity described in this resource.
|
protected List<Resource> |
VerificationResult.targetTarget
The actual objects that are the target of the reference (A resource that was validated.)
|
protected List<Resource> |
Contract.ContractAssetComponent.typeReferenceTarget
The actual objects that are the target of the reference (Associated entities.)
|
protected List<Resource> |
Procedure.usedReferenceTarget
The actual objects that are the target of the reference (Identifies medications, devices and any other substance used as part of the procedure.)
|
| Modifier and Type | Method and Description |
|---|---|
Resource |
Base.castToResource(Base b) |
abstract Resource |
Resource.copy() |
static Resource |
ResourceFactory.createResource(String name) |
Resource |
Invoice.InvoiceParticipantComponent.getActorTarget() |
Resource |
ImagingStudy.ImagingStudySeriesPerformerComponent.getActorTarget() |
Resource |
MedicationDispense.MedicationDispensePerformerComponent.getActorTarget() |
Resource |
ChargeItem.ChargeItemPerformerComponent.getActorTarget() |
Resource |
Procedure.ProcedurePerformerComponent.getActorTarget() |
Resource |
MedicationAdministration.MedicationAdministrationPerformerComponent.getActorTarget() |
Resource |
Immunization.ImmunizationPerformerComponent.getActorTarget() |
Resource |
AppointmentResponse.getActorTarget() |
Resource |
Appointment.AppointmentParticipantComponent.getActorTarget() |
Resource |
Procedure.getAsserterTarget() |
Resource |
AllergyIntolerance.getAsserterTarget() |
Resource |
Condition.getAsserterTarget() |
Resource |
DocumentReference.getAuthenticatorTarget() |
Resource |
QuestionnaireResponse.getAuthorTarget() |
Resource |
Linkage.getAuthorTarget() |
Resource |
Flag.getAuthorTarget() |
Resource |
CarePlan.getAuthorTarget() |
Resource |
AdverseEvent.AdverseEventSuspectEntityCausalityComponent.getAuthorTarget() |
Resource |
Contract.getAuthorTarget() |
Resource |
RequestGroup.getAuthorTarget() |
Resource |
DetectedIssue.getAuthorTarget() |
Resource |
Basic.getAuthorTarget() |
Resource |
RiskAssessment.getBasedOnTarget() |
Resource |
BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent.getCollectorTarget() |
Resource |
Encounter.DiagnosisComponent.getConditionTarget() |
Resource |
MedicationStatement.getContextTarget() |
Resource |
GuidanceResponse.getContextTarget() |
Resource |
ImagingStudy.getContextTarget() |
Resource |
MedicationDispense.getContextTarget() |
Resource |
ChargeItem.getContextTarget() |
Resource |
QuestionnaireResponse.getContextTarget() |
Resource |
DiagnosticReport.getContextTarget() |
Resource |
Procedure.getContextTarget() |
Resource |
RiskAssessment.getContextTarget() |
Resource |
Media.getContextTarget() |
Resource |
CommunicationRequest.getContextTarget() |
Resource |
CarePlan.getContextTarget() |
Resource |
ServiceRequest.getContextTarget() |
Resource |
AdverseEvent.getContextTarget() |
Resource |
MedicationAdministration.getContextTarget() |
Resource |
CareTeam.getContextTarget() |
Resource |
Contract.ActionComponent.getContextTarget() |
Resource |
DeviceRequest.getContextTarget() |
Resource |
RequestGroup.getContextTarget() |
Resource |
NutritionOrder.getContextTarget() |
Resource |
Communication.getContextTarget() |
Resource |
Task.getContextTarget() |
Resource |
ClinicalImpression.getContextTarget() |
Resource |
MedicationRequest.getContextTarget() |
Resource |
Condition.getContextTarget() |
Resource |
SupplyRequest.getDeliverFromTarget() |
Resource |
SupplyRequest.getDeliverToTarget() |
Resource |
Encounter.EncounterHospitalizationComponent.getDestinationTarget() |
Resource |
Observation.getDeviceTarget() |
Resource |
Media.getDeviceTarget() |
Resource |
ChargeItem.getEntererTarget() |
Resource |
ExplanationOfBenefit.getEntererTarget() |
Resource |
CoverageEligibilityRequest.getEntererTarget() |
Resource |
Claim.getEntererTarget() |
Resource |
Group.GroupMemberComponent.getEntityTarget() |
Resource |
Goal.getExpressedByTarget() |
Resource |
CoverageEligibilityRequest.DetailsComponent.getFacilityTarget() |
Resource |
Task.getFocusTarget() |
Resource |
Task.getForTarget() |
Resource |
Encounter.EncounterParticipantComponent.getIndividualTarget() |
Resource |
MedicationStatement.getInformationSourceTarget() |
Resource |
CoverageEligibilityRequest.InformationComponent.getInformationTarget() |
Resource |
AdverseEvent.AdverseEventSuspectEntityComponent.getInstanceTarget() |
Resource |
ClinicalImpression.ClinicalImpressionFindingComponent.getItemReferenceTarget() |
Resource |
ListResource.ListEntryComponent.getItemTarget() |
Resource |
CareTeam.CareTeamParticipantComponent.getMemberTarget() |
Resource |
AuditEvent.AuditEventSourceComponent.getObserverTarget() |
Resource |
Provenance.ProvenanceAgentComponent.getOnBehalfOfTarget() |
Resource |
Signature.getOnBehalfOfTarget() |
Resource |
Media.getOperatorTarget() |
Resource |
NutritionOrder.getOrdererTarget() |
Resource |
Encounter.EncounterHospitalizationComponent.getOriginTarget() |
Resource |
Patient.PatientLinkComponent.getOtherTarget() |
Resource |
Bundle.BundleEntryResponseComponent.getOutcome() |
Resource |
Task.getOwnerTarget() |
Resource |
RiskAssessment.getParentTarget() |
Resource |
BiologicallyDerivedProduct.getParentTarget() |
Resource |
Contract.SignatoryComponent.getPartyTarget() |
Resource |
ExplanationOfBenefit.PayeeComponent.getPartyTarget() |
Resource |
Composition.CompositionAttesterComponent.getPartyTarget() |
Resource |
Account.GuarantorComponent.getPartyTarget() |
Resource |
Claim.PayeeComponent.getPartyTarget() |
Resource |
RiskAssessment.getPerformerTarget() |
Resource |
Contract.ActionComponent.getPerformerTarget() |
Resource |
DeviceRequest.getPerformerTarget() |
Resource |
MedicationRequest.getPerformerTarget() |
Resource |
Coverage.getPolicyHolderTarget() |
Resource |
VisionPrescription.getPrescriberTarget() |
Resource |
ExplanationOfBenefit.getPrescriptionTarget() |
Resource |
Claim.getPrescriptionTarget() |
Resource |
ProcessRequest.getProviderTarget() |
Resource |
CoverageEligibilityResponse.ItemsComponent.getProviderTarget() |
Resource |
EnrollmentRequest.getProviderTarget() |
Resource |
ExplanationOfBenefit.getProviderTarget() |
Resource |
ExplanationOfBenefit.CareTeamComponent.getProviderTarget() |
Resource |
CoverageEligibilityRequest.getProviderTarget() |
Resource |
CoverageEligibilityRequest.DetailsComponent.getProviderTarget() |
Resource |
PaymentNotice.getProviderTarget() |
Resource |
Claim.getProviderTarget() |
Resource |
Claim.CareTeamComponent.getProviderTarget() |
Resource |
Contract.ContentDefinitionComponent.getPublisherTarget() |
Resource |
Task.getReasonReferenceTarget() |
Resource |
MessageHeader.MessageDestinationComponent.getReceiverTarget() |
Resource |
Invoice.getRecipientTarget() |
Resource |
Contract.ValuedItemComponent.getRecipientTarget() |
Resource |
Procedure.getRecorderTarget() |
Resource |
AdverseEvent.getRecorderTarget() |
Resource |
AllergyIntolerance.getRecorderTarget() |
Resource |
Condition.getRecorderTarget() |
Resource |
CatalogEntry.getReferencedItemTarget() |
Resource |
ImplementationGuide.ImplementationGuideDefinitionResourceComponent.getReferenceTarget() |
Resource |
ImplementationGuide.ManifestResourceComponent.getReferenceTarget() |
Resource |
CarePlan.CarePlanActivityComponent.getReferenceTarget() |
Resource |
Contract.AssetContextComponent.getReferenceTarget() |
Resource |
Consent.provisionActorComponent.getReferenceTarget() |
Resource |
Consent.provisionDataComponent.getReferenceTarget() |
Resource |
DocumentManifest.DocumentManifestRelatedComponent.getRefTarget() |
Resource |
MeasureReport.getReporterTarget() |
Resource |
CommunicationRequest.getRequesterTarget() |
Resource |
ServiceRequest.getRequesterTarget() |
Resource |
DeviceRequest.getRequesterTarget() |
Resource |
Task.getRequesterTarget() |
Resource |
MedicationRequest.getRequesterTarget() |
Resource |
SupplyRequest.getRequesterTarget() |
Resource |
ProcessResponse.getRequestProviderTarget() |
Resource |
CoverageEligibilityResponse.getRequestProviderTarget() |
Resource |
PaymentReconciliation.getRequestProviderTarget() |
Resource |
EnrollmentResponse.getRequestProviderTarget() |
Resource |
ClaimResponse.getRequestProviderTarget() |
Resource |
ProcessResponse.getRequestTarget() |
Resource |
ProcessRequest.getRequestTarget() |
Resource |
PaymentReconciliation.DetailsComponent.getRequestTarget() |
Resource |
PaymentNotice.getRequestTarget() |
Resource |
Parameters.ParametersParameterComponent.getResource() |
Resource |
Bundle.BundleEntryComponent.getResource() |
Resource |
TestScript.TestScriptFixtureComponent.getResourceTarget() |
Resource |
TestScript.TestScriptRuleComponent.getResourceTarget() |
Resource |
TestScript.TestScriptRulesetComponent.getResourceTarget() |
Resource |
Linkage.LinkageItemComponent.getResourceTarget() |
Resource |
RequestGroup.RequestGroupActionComponent.getResourceTarget() |
Resource |
ProcessRequest.getResponseTarget() |
Resource |
PaymentReconciliation.DetailsComponent.getResponseTarget() |
Resource |
PaymentNotice.getResponseTarget() |
Resource |
Contract.ValuedItemComponent.getResponsibleTarget() |
Resource |
MessageHeader.getResponsibleTarget() |
Resource |
GuidanceResponse.getResultTarget() |
Resource |
Binary.getSecurityContextTarget() |
Resource |
CommunicationRequest.getSenderTarget() |
Resource |
Communication.getSenderTarget() |
Resource |
MessageHeader.getSenderTarget() |
Resource |
ListResource.getSourceTarget() |
Resource |
QuestionnaireResponse.getSourceTarget() |
Resource |
MedicationKnowledge.MedicationKnowledgeMonographComponent.getSourceTarget() |
Resource |
DeviceUseStatement.getSourceTarget() |
Resource |
BiologicallyDerivedProduct.BiologicallyDerivedProductCollectionComponent.getSourceTarget() |
Resource |
MedicationStatement.getSubjectTarget() |
Resource |
Invoice.getSubjectTarget() |
Resource |
ListResource.getSubjectTarget() |
Resource |
GuidanceResponse.getSubjectTarget() |
Resource |
ImagingStudy.getSubjectTarget() |
Resource |
MedicationDispense.getSubjectTarget() |
Resource |
ChargeItem.getSubjectTarget() |
Resource |
QuestionnaireResponse.getSubjectTarget() |
Resource |
Observation.getSubjectTarget() |
Resource |
DiagnosticReport.getSubjectTarget() |
Resource |
Procedure.getSubjectTarget() |
Resource |
Flag.getSubjectTarget() |
Resource |
RiskAssessment.getSubjectTarget() |
Resource |
DocumentManifest.getSubjectTarget() |
Resource |
Media.getSubjectTarget() |
Resource |
CommunicationRequest.getSubjectTarget() |
Resource |
CarePlan.getSubjectTarget() |
Resource |
ServiceRequest.getSubjectTarget() |
Resource |
AdverseEvent.getSubjectTarget() |
Resource |
MedicationAdministration.getSubjectTarget() |
Resource |
Goal.getSubjectTarget() |
Resource |
CareTeam.getSubjectTarget() |
Resource |
DeviceRequest.getSubjectTarget() |
Resource |
RequestGroup.getSubjectTarget() |
Resource |
MedicinalProductAuthorization.getSubjectTarget() |
Resource |
Communication.getSubjectTarget() |
Resource |
DocumentReference.getSubjectTarget() |
Resource |
Encounter.getSubjectTarget() |
Resource |
ClinicalImpression.getSubjectTarget() |
Resource |
DeviceUseStatement.getSubjectTarget() |
Resource |
Basic.getSubjectTarget() |
Resource |
Composition.getSubjectTarget() |
Resource |
MedicationRequest.getSubjectTarget() |
Resource |
MeasureReport.getSubjectTarget() |
Resource |
Specimen.getSubjectTarget() |
Resource |
Condition.getSubjectTarget() |
Resource |
Coverage.getSubscriberTarget() |
Resource |
SupplyDelivery.getSupplierTarget() |
Resource |
Person.PersonLinkComponent.getTargetTarget() |
Resource |
Contract.ContractOfferComponent.getTopicTarget() |
Resource |
UserSession.getUserTarget() |
Resource |
Consent.ConsentVerificationComponent.getVerifiedWithTarget() |
Resource |
Provenance.ProvenanceEntityComponent.getWhatTarget() |
Resource |
AuditEvent.AuditEventEntityComponent.getWhatTarget() |
Resource |
DocumentManifest.DocumentManifestAgentComponent.getWhoTarget() |
Resource |
Provenance.ProvenanceAgentComponent.getWhoTarget() |
Resource |
AuditEvent.AuditEventAgentComponent.getWhoTarget() |
Resource |
DocumentReference.DocumentReferenceAgentComponent.getWhoTarget() |
Resource |
Signature.getWhoTarget() |
Resource |
ProfilingWrapper.IResourceResolver.resolve(Base context,
Base resource,
Base reference) |
Resource |
Resource.setId(String value) |
Resource |
Resource.setIdElement(IdType value) |
Resource |
Resource.setImplicitRules(String value) |
Resource |
Resource.setImplicitRulesElement(UriType value) |
Resource |
Resource.setLanguage(String value) |
Resource |
Resource.setLanguageElement(CodeType value) |
Resource |
Resource.setMeta(Meta value) |
| Modifier and Type | Method and Description |
|---|---|
List<Resource> |
CommunicationRequest.getAboutTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Communication.getAboutTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Schedule.getActorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Goal.getAddressesTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Condition.ConditionStageComponent.getAssessmentTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Composition.getAuthorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Composition.SectionComponent.getAuthorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationStatement.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ImagingStudy.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
QuestionnaireResponse.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DiagnosticReport.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Procedure.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Media.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CommunicationRequest.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ServiceRequest.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceRequest.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RequestGroup.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Communication.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Task.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationRequest.getBasedOnTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RiskAssessment.getBasisTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProduct.getContactTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DomainResource.getContained() |
List<Resource> |
DocumentManifest.getContentTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CarePlan.getContributorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
AdverseEvent.getContributorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationStatement.getDerivedFromTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getDerivedFromTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceUseStatement.getDerivedFromTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CoverageEligibilityRequest.DetailsComponent.getDetailTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Composition.CompositionEventComponent.getDetailTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Condition.ConditionEvidenceComponent.getDetailTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductPharmaceutical.getDeviceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductPackaged.MedicinalProductPackagedPackageItemComponent.getDeviceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DocumentReference.DocumentReferenceContextComponent.getEncounterTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Composition.SectionComponent.getEntryTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MeasureReport.getEvaluatedResourceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getFocusTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
UserSession.getFocusTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MessageHeader.getFocusTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Patient.getGeneralPractitionerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getHasMemberTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DetectedIssue.getImplicatedTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Appointment.getIndicationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ChargeItemDefinition.getInstanceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ServiceRequest.getInsuranceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceRequest.getInsuranceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Task.getInsuranceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationRequest.getInsuranceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ClinicalImpression.ClinicalImpressionInvestigationComponent.getItemTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CarePlan.CarePlanActivityComponent.getOutcomeReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RequestGroup.RequestGroupActionComponent.getParticipantTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationStatement.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
QuestionnaireResponse.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Procedure.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Media.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationAdministration.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Communication.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
SupplyDelivery.getPartOfTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Coverage.getPayorTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Observation.getPerformerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DiagnosticReport.getPerformerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CarePlan.CarePlanActivityDetailComponent.getPerformerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ServiceRequest.getPerformerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Consent.getPerformerTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceRequest.getPriorRequestTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ClinicalImpression.getProblemTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
TestScript.getProfileTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ExplanationOfBenefit.AddedItemComponent.getProviderTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ClaimResponse.AddedItemComponent.getProviderTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationStatement.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
GuidanceResponse.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ImagingStudy.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Procedure.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
FamilyMemberHistory.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RiskAssessment.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CommunicationRequest.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CarePlan.CarePlanActivityDetailComponent.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ServiceRequest.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationAdministration.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Immunization.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.ActionComponent.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceRequest.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RequestGroup.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Communication.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceUseStatement.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationRequest.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
SupplyRequest.getReasonReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationDispense.getReceiverTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DocumentManifest.getRecipientTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CommunicationRequest.getRecipientTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Communication.getRecipientTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Task.TaskRestrictionComponent.getRecipientTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.ContractPartyComponent.getReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.ActionSubjectComponent.getReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DocumentReference.DocumentReferenceContextComponent.getRelatedTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
RequestGroup.getReplacesTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Procedure.getReportTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.ActionComponent.getRequesterTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DiagnosticReport.getResultsInterpreterTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ChargeItem.getServiceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
AdverseEvent.getSubjectMedicalHistoryTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductContraindication.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductInteraction.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductIndication.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Account.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicinalProductUndesirableEffect.getSubjectTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
SupplyRequest.getSupplierTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent.getSupportingImmunizationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationDispense.getSupportingInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ChargeItem.getSupportingInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationAdministration.getSupportingInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
MedicationRequest.getSupportingInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Appointment.getSupportingInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
CarePlan.getSupportingInfoTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ServiceRequest.getSupportingInfoTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.getSupportingInfoTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
DeviceRequest.getSupportingInfoTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ClinicalImpression.getSupportingInfoTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
ImmunizationRecommendation.ImmunizationRecommendationRecommendationComponent.getSupportingPatientInformationTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Provenance.getTargetTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
VerificationResult.getTargetTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Contract.ContractAssetComponent.getTypeReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
List<Resource> |
Procedure.getUsedReferenceTarget()
Deprecated.
Use Reference#setResource(IBaseResource) instead
|
| Modifier and Type | Method and Description |
|---|---|
DomainResource |
DomainResource.setContained(List<Resource> theContained) |
| Modifier and Type | Method and Description |
|---|---|
static Resource |
ResourceUtilities.getById(Bundle feed,
ResourceType type,
String reference) |
Resource |
GraphQLEngine.getFocus() |
Resource |
QuestionnaireBuilder.getReference() |
Resource |
GraphQLEngine.IGraphQLStorageServices.lookup(Object appInfo,
String type,
String id) |
Resource |
NarrativeGenerator.ResourceContext.resolve(String value) |
| Modifier and Type | Method and Description |
|---|---|
List<Base> |
FHIRPathEngine.evaluate(Object appContext,
Resource resource,
Base base,
ExpressionNode ExpressionNode)
evaluate a path and return the matching elements
|
List<Base> |
FHIRPathEngine.evaluate(Object appContext,
Resource resource,
Base base,
String path)
evaluate a path and return the matching elements
|
boolean |
FHIRPathEngine.evaluateToBoolean(Resource resource,
Base base,
ExpressionNode node)
evaluate a path and return true or false (e.g.
|
boolean |
FHIRPathEngine.evaluateToBoolean(Resource resource,
Base base,
String path)
evaluate a path and return true or false (e.g.
|
GraphQLEngine.IGraphQLStorageServices.ReferenceResolution |
GraphQLEngine.IGraphQLStorageServices.lookup(Object appInfo,
Resource context,
Reference reference) |
static Meta |
ResourceUtilities.meta(Resource resource) |
void |
GraphQLEngine.setFocus(Resource focus) |
void |
QuestionnaireBuilder.setReference(Resource resource) |
Element |
IResourceValidator.validate(Object Context,
List<org.hl7.fhir.utilities.validation.ValidationMessage> errors,
Resource resource) |
Element |
IResourceValidator.validate(Object Context,
List<org.hl7.fhir.utilities.validation.ValidationMessage> errors,
Resource resource,
String profile) |
Element |
IResourceValidator.validate(Object Context,
List<org.hl7.fhir.utilities.validation.ValidationMessage> errors,
Resource resource,
StructureDefinition profile) |
Element |
IResourceValidator.validate(Object Context,
List<org.hl7.fhir.utilities.validation.ValidationMessage> errors,
Resource resource,
ValidationProfileSet profiles) |
| Modifier and Type | Method and Description |
|---|---|
void |
GraphQLEngine.IGraphQLStorageServices.listResources(Object appInfo,
String type,
List<org.hl7.fhir.utilities.graphql.Argument> searchParams,
List<Resource> matches) |
| Constructor and Description |
|---|
ReferenceResolution(Resource targetContext,
Resource target) |
ResourceWrapperDirect(Resource wrapped) |
| Modifier and Type | Class and Description |
|---|---|
class |
ResourceRequest<T extends Resource> |
| Modifier and Type | Method and Description |
|---|---|
<T extends Resource> |
FHIRToolingClient.getCanonical(Class<T> resourceClass,
String canonicalURL) |
<T extends Resource> |
ClientUtils.getResourceAsByteArray(T resource,
boolean pretty,
boolean isJson)
Other general helper methods
|
<T extends Resource> |
ClientUtils.issueGetResourceRequest(URI resourceUri,
String resourceFormat) |
<T extends Resource> |
ClientUtils.issueOptionsRequest(URI optionsUri,
String resourceFormat) |
<T extends Resource> |
ClientUtils.issuePostRequest(URI resourceUri,
byte[] payload,
String resourceFormat) |
<T extends Resource> |
ClientUtils.issuePostRequest(URI resourceUri,
byte[] payload,
String resourceFormat,
List<org.apache.http.Header> headers) |
<T extends Resource> |
ClientUtils.issuePutRequest(URI resourceUri,
byte[] payload,
String resourceFormat) |
<T extends Resource> |
ClientUtils.issuePutRequest(URI resourceUri,
byte[] payload,
String resourceFormat,
List<org.apache.http.Header> headers) |
protected <T extends Resource> |
ClientUtils.issueResourceRequest(String resourceFormat,
org.apache.http.client.methods.HttpUriRequest request)
Request/Response Helper methods
|
protected <T extends Resource> |
ClientUtils.issueResourceRequest(String resourceFormat,
org.apache.http.client.methods.HttpUriRequest request,
byte[] payload) |
protected <T extends Resource> |
ClientUtils.issueResourceRequest(String resourceFormat,
org.apache.http.client.methods.HttpUriRequest request,
byte[] payload,
List<org.apache.http.Header> headers) |
<T extends Resource> |
ResourceAddress.nameForClass(Class<T> resourceClass) |
<T extends Resource> |
FHIRToolingClient.operateType(Class<T> resourceClass,
String name,
Parameters params) |
<T extends Resource> |
FHIRToolingClient.read(Class<T> resourceClass,
String id) |
<T extends Resource> |
ResourceAddress.resolveDeleteTagsForResourceVersion(Class<T> resourceClass,
String id,
String version) |
<T extends Resource> |
ResourceAddress.resolveGetAllTags() |
<T extends Resource> |
ResourceAddress.resolveGetAllTagsForResourceType(Class<T> resourceClass) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceId(Class<T> resourceClass,
String id,
Calendar since,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceId(Class<T> resourceClass,
String id,
Date since,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceId(Class<T> resourceClass,
String id,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceType(Class<T> resourceClass,
Calendar since,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceType(Class<T> resourceClass,
Date since,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceType(Class<T> resourceClass,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetHistoryForResourceType(Class<T> resourceClass,
Object since,
int count) |
protected <T extends Resource> |
ResourceAddress.resolveGetHistoryUriForResourceId(Class<T> resourceClass,
String id,
Object since,
int count) |
<T extends Resource> |
ResourceAddress.resolveGetTagsForReference(Class<T> resourceClass,
String id) |
<T extends Resource> |
ResourceAddress.resolveGetTagsForResourceVersion(Class<T> resourceClass,
String id,
String version) |
<T extends Resource> |
ResourceAddress.resolveGetUriFromResourceClass(Class<T> resourceClass) |
<T extends Resource> |
ResourceAddress.resolveGetUriFromResourceClassAndCanonical(Class<T> resourceClass,
String canonicalUrl) |
<T extends Resource> |
ResourceAddress.resolveGetUriFromResourceClassAndId(Class<T> resourceClass,
String id) |
<T extends Resource> |
ResourceAddress.resolveGetUriFromResourceClassAndIdAndVersion(Class<T> resourceClass,
String id,
String version) |
<T extends Resource> |
ResourceAddress.resolveOperationUri(Class<T> resourceClass,
String opName) |
<T extends Resource> |
ResourceAddress.resolveOperationUri(Class<T> resourceClass,
String opName,
Map<String,String> parameters) |
<T extends Resource> |
ResourceAddress.resolveOperationURLFromClass(Class<T> resourceClass,
String name,
String parameters) |
<T extends Resource> |
ResourceAddress.resolveSearchUri(Class<T> resourceClass,
Map<String,String> parameters) |
<T extends Resource> |
ResourceAddress.resolveValidateUri(Class<T> resourceClass,
String id) |
protected <T extends Resource> |
ClientUtils.unmarshalReference(org.apache.http.HttpResponse response,
String format)
Unmarshals a resource from the response stream.
|
<T extends Resource> |
FHIRToolingClient.validate(Class<T> resourceClass,
T resource,
String id) |
<T extends Resource> |
FHIRToolingClient.vread(Class<T> resourceClass,
String id,
String version) |
| Modifier and Type | Method and Description |
|---|---|
static String |
ResourceAddress.buildRelativePathFromReference(Resource resource) |
static String |
ResourceAddress.buildRelativePathFromReference(Resource resource,
String id) |
Bundle |
ClientUtils.issuePostFeedRequest(URI resourceUri,
Map<String,String> parameters,
String resourceName,
Resource resource,
String resourceFormat) |
Copyright © 2014–2018 University Health Network. All rights reserved.