Uses of Class
com.ibm.fhir.model.resource.Bundle.Entry
-
Packages that use Bundle.Entry Package Description com.ibm.fhir.model.resource com.ibm.fhir.model.util com.ibm.fhir.search.util -
-
Uses of Bundle.Entry in com.ibm.fhir.model.resource
Methods in com.ibm.fhir.model.resource that return Bundle.Entry Modifier and Type Method Description Bundle.Entry
Bundle.Entry.Builder. build()
Build theBundle.Entry
Methods in com.ibm.fhir.model.resource that return types with arguments of type Bundle.Entry Modifier and Type Method Description List<Bundle.Entry>
Bundle. getEntry()
An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only).Methods in com.ibm.fhir.model.resource with parameters of type Bundle.Entry Modifier and Type Method Description Bundle.Builder
Bundle.Builder. entry(Bundle.Entry... entry)
An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only).protected Bundle.Entry.Builder
Bundle.Entry.Builder. from(Bundle.Entry entry)
Method parameters in com.ibm.fhir.model.resource with type arguments of type Bundle.Entry Modifier and Type Method Description Bundle.Builder
Bundle.Builder. entry(Collection<Bundle.Entry> entry)
An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only). -
Uses of Bundle.Entry in com.ibm.fhir.model.util
Methods in com.ibm.fhir.model.util that return Bundle.Entry Modifier and Type Method Description static Bundle.Entry
FHIRUtil. resolveBundleReference(Bundle bundle, Bundle.Entry sourceEntry, Reference ref)
Resolve the referenceref
to an entry withinbundle
Methods in com.ibm.fhir.model.util with parameters of type Bundle.Entry Modifier and Type Method Description static Bundle.Entry
FHIRUtil. resolveBundleReference(Bundle bundle, Bundle.Entry sourceEntry, Reference ref)
Resolve the referenceref
to an entry withinbundle
static <T extends Resource>
TFHIRUtil. resolveBundleReference(Class<T> resourceType, Bundle bundle, Bundle.Entry sourceEntry, Reference ref)
Resolve the referenceref
to an entry withinbundle
and return the corresponding resourcestatic Resource
FHIRUtil. resolveReference(Reference ref, DomainResource resource, Bundle bundle, Bundle.Entry entry)
Resolve referenceref
to a bundle entry or a resource contained withinresource
and return the corresponding resource container. -
Uses of Bundle.Entry in com.ibm.fhir.search.util
Methods in com.ibm.fhir.search.util with parameters of type Bundle.Entry Modifier and Type Method Description static String
ReferenceUtil. getBaseUrl(Bundle.Entry entry)
Extract the base URL from the bundle entry if one is given, otherwise use the service base URL.static String
ReferenceUtil. getBaseUrlFromBundle(Bundle.Entry entry)
https://www.hl7.org/fhir/references.html#literal See: a relative URL, which is relative to the Service Base URL, or, if processing a resource from a bundle, which is relative to the base URL implied by the Bundle.entry.fullUrl (see Resolving References in Bundles) If the fullUrl looks like this "fullUrl": "https://localhost:9443/fhir-server/api/v4/Observation/17546b5a5a9-872ecfe4-cb5e-4f8c-a381-5b13df536f87" then the returned String will look like this: "https://localhost:9443/fhir-server/api/v4/"
-