Class BaseParser
- All Implemented Interfaces:
IParser
- Direct Known Subclasses:
JsonParser
,NDJsonParser
,RDFParser
,XmlParser
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Any resources that were created by the parser (i.e. -
Constructor Summary
ConstructorDescriptionBaseParser
(FhirContext theContext, IParserErrorHandler theParserErrorHandler) Constructor -
Method Summary
Modifier and TypeMethodDescriptionprotected Iterable
<BaseParser.CompositeChildElement> compositeChildIterator
(IBase theCompositeElement, boolean theContainedResource, BaseParser.CompositeChildElement theParent, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected void
containResourcesInReferences
(IBaseResource theResource) protected abstract void
doEncodeResourceToWriter
(IBaseResource theResource, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected void
doEncodeToWriter
(IBase theElement, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected abstract <T extends IBaseResource>
TdoParseResource
(Class<T> theResourceType, Reader theReader) encodeResourceToString
(IBaseResource theResource) Encodes a resource using the parser's given encoding format.final void
encodeResourceToWriter
(IBaseResource theResource, Writer theWriter) Encodes a resource using the parser's given encoding format.protected void
encodeResourceToWriter
(IBaseResource theResource, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) encodeToString
(IBase theElement) Encodes any FHIR element to a string.void
encodeToWriter
(IBase theElement, Writer theWriter) Encodes any FHIR element to a writer.protected void
encodeToWriter
(IBase theElement, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected static <T> List
<T> extractMetadataListNotNull
(IResource resource, ResourceMetadataKeyEnum<List<T>> key) protected IIdType
fixContainedResourceId
(String theValue) protected String
getCompositeElementId
(IBase theElement) protected FhirContext
Returns the value supplied toIParser.setDontStripVersionsFromReferencesAtPaths(String...)
ornull
if no value has been set for this parser (in which case the default from theParserOptions
will be used).If not set to null (as is the default) this ID will be used as the ID in any resources encoded by this parserprotected IParserErrorHandler
protected List
<Map.Entry<ResourceMetadataKeyEnum<?>, Object>> getExtensionMetadataKeys
(IResource resource) protected String
getExtensionUrl
(String extensionUrl) protected TagList
getMetaTagsForEncoding
(IResource theIResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) List
<Class<? extends IBaseResource>> Gets the preferred types, as set usingIParser.setPreferTypes(List)
protected <T extends IPrimitiveType<String>>
List<T> getProfileTagsForEncoding
(IBaseResource theResource, List<T> theProfiles) protected String
If set totrue
(which is the default), resource references containing a version will have the version removed when the resource is encoded.
boolean
Deprecated.protected boolean
isChildContained
(BaseRuntimeElementDefinition<?> childDef, boolean theIncludedResource) boolean
If set totrue
(default is false), the values supplied toIParser.setEncodeElements(Set)
will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e.boolean
Returns true if resource IDs should be omittedboolean
Is the parser in "summary mode"? SeeIParser.setSummaryMode(boolean)
for informationboolean
If set totrue
(default isfalse
), narratives will not be included in the encoded values.parseResource
(InputStream theInputStream) Parses a resourceparseResource
(Reader theReader) Parses a resource<T extends IBaseResource>
TparseResource
(Class<T> theResourceType, InputStream theInputStream) Parses a resource<T extends IBaseResource>
TparseResource
(Class<T> theResourceType, Reader theReader) Parses a resource<T extends IBaseResource>
TparseResource
(Class<T> theResourceType, String theMessageString) Parses a resourceparseResource
(String theMessageString) Parses a resourcepreProcessValues
(BaseRuntimeChildDefinition theMetaChildUncast, IBaseResource theResource, List<? extends IBase> theValues, BaseParser.CompositeChildElement theCompositeChildElement, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) setDontEncodeElements
(Collection<String> theDontEncodeElements) If provided, specifies the elements which should NOT be encoded.setDontStripVersionsFromReferencesAtPaths
(String... thePaths) If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process.If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process.setEncodeElements
(Set<String> theEncodeElements) If provided, specifies the elements which should be encoded, to the exclusion of all others.void
setEncodeElementsAppliesToChildResourcesOnly
(boolean theEncodeElementsAppliesToChildResourcesOnly) If set totrue
(default is false), the values supplied toIParser.setEncodeElements(Set)
will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e.setEncodeForceResourceId
(IIdType theEncodeForceResourceId) When encoding, force this resource ID to be encoded as the resource IDsetOmitResourceId
(boolean theOmitResourceId) If set totrue
(default isfalse
) the ID of any resources being encoded will not be included in the output.setOverrideResourceIdWithBundleEntryFullUrl
(Boolean theOverrideResourceIdWithBundleEntryFullUrl) If set totrue
(which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined.setParserErrorHandler
(IParserErrorHandler theErrorHandler) Registers an error handler which will be invoked when any parse errors are foundvoid
setPreferTypes
(List<Class<? extends IBaseResource>> thePreferTypes) If set, when parsing resources the parser will try to use the given types when possible, in the order that they are provided (from highest to lowest priority).setServerBaseUrl
(String theUrl) Sets the server's base URL used by this parser.setStripVersionsFromReferences
(Boolean theStripVersionsFromReferences) If set totrue
(which is the default), resource references containing a version will have the version removed when the resource is encoded.
setSummaryMode
(boolean theSummaryMode) If set totrue
(default isfalse
) only elements marked by the FHIR specification as being "summary elements" will be included.setSuppressNarratives
(boolean theSuppressNarratives) If set totrue
(default isfalse
), narratives will not be included in the encoded values.protected boolean
shouldAddSubsettedTag
(ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected boolean
shouldEncodePath
(IResource theResource, String thePath, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) Used for DSTU2 onlyprotected boolean
shouldEncodeResource
(String theName, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected boolean
shouldEncodeResourceId
(IBaseResource theResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) protected boolean
shouldEncodeResourceMeta
(IResource theResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) Used for DSTU2 onlyprotected void
throwExceptionForUnknownChildType
(BaseRuntimeChildDefinition nextChild, Class<? extends IBase> theType) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface ca.uhn.fhir.parser.IParser
getEncoding, setDontEncodeElements, setEncodeElements, setPrettyPrint
-
Field Details
-
RESOURCE_CREATED_BY_PARSER
Any resources that were created by the parser (i.e. by parsing a serialized resource) will have auser data
property with this key.- Since:
- 5.0.0
-
-
Constructor Details
-
BaseParser
Constructor
-
-
Method Details
-
getContext
-
setDontEncodeElements
Description copied from interface:IParser
If provided, specifies the elements which should NOT be encoded. Valid values for this field would include:- Patient - Don't encode patient and all its children
- Patient.name - Don't encode the patient's name
- Patient.name.family - Don't encode the patient's family name
- *.text - Don't encode the text element on any resource (only the very first position may contain a wildcard)
Note: If
IParser.setSummaryMode(boolean)
is set totrue
, then any elements specified using this method will be excluded even if they are summary elements.DSTU2 note: Note that values including meta, such as
Patient.meta
will work for DSTU2 parsers, but values with sub-elements on meta such asPatient.meta.lastUpdated
will only work in DSTU3+ mode.- Specified by:
setDontEncodeElements
in interfaceIParser
- Parameters:
theDontEncodeElements
- The elements to not encode, ornull
- See Also:
-
setEncodeElements
Description copied from interface:IParser
If provided, specifies the elements which should be encoded, to the exclusion of all others. Valid values for this field would include:- Patient - Encode patient and all its children
- Patient.name - Encode only the patient's name
- Patient.name.family - Encode only the patient's family name
- *.text - Encode the text element on any resource (only the very first position may contain a wildcard)
- *.(mandatory) - This is a special case which causes any mandatory fields (min > 0) to be encoded
Note: If
IParser.setSummaryMode(boolean)
is set totrue
, then any elements specified using this method will be included even if they are not summary elements.- Specified by:
setEncodeElements
in interfaceIParser
- Parameters:
theEncodeElements
- The elements to encode, ornull
- See Also:
-
compositeChildIterator
protected Iterable<BaseParser.CompositeChildElement> compositeChildIterator(IBase theCompositeElement, boolean theContainedResource, BaseParser.CompositeChildElement theParent, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
doEncodeResourceToWriter
protected abstract void doEncodeResourceToWriter(IBaseResource theResource, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) throws IOException, DataFormatException - Throws:
IOException
DataFormatException
-
doEncodeToWriter
protected void doEncodeToWriter(IBase theElement, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) throws IOException, DataFormatException - Throws:
IOException
DataFormatException
-
doParseResource
protected abstract <T extends IBaseResource> T doParseResource(Class<T> theResourceType, Reader theReader) throws DataFormatException - Throws:
DataFormatException
-
encodeResourceToString
Description copied from interface:IParser
Encodes a resource using the parser's given encoding format.- Specified by:
encodeResourceToString
in interfaceIParser
- Parameters:
theResource
- The resource to encode. Must not be null.- Returns:
- A string representation of the encoding
- Throws:
DataFormatException
- If any invalid elements within the contents to be encoded prevent successful encoding.
-
encodeResourceToWriter
public final void encodeResourceToWriter(IBaseResource theResource, Writer theWriter) throws IOException, DataFormatException Description copied from interface:IParser
Encodes a resource using the parser's given encoding format.- Specified by:
encodeResourceToWriter
in interfaceIParser
- Parameters:
theResource
- The resource to encode. Must not be null.theWriter
- The writer to write to.- Throws:
DataFormatException
- If any invalid elements within the contents to be encoded prevent successful encoding.IOException
-
encodeToString
Description copied from interface:IParser
Encodes any FHIR element to a string. If aresource object
is passed in, the resource will be encoded using standard FHIR encoding rules. If aprimitive datatype
is passed in, the string value of the primitive type is encoded. Any extensions on the primitive type are not encoded. If any other object is passed in, a fragment is encoded. The format of the fragment depends on the encoding:- JSON: The fragment is output as a simple JSON object, exactly as it would appear within an encoded resource.
- XML: The fragment is output as an XML element as it would appear within an encoded resource, however it is wrapped in an element called
<element>
in order to avoid producing a document with multiple root tags. - RDF/Turtle: This mode is not supported and will throw an
InternalErrorException
- Specified by:
encodeToString
in interfaceIParser
- Throws:
DataFormatException
-
encodeToWriter
public void encodeToWriter(IBase theElement, Writer theWriter) throws DataFormatException, IOException Description copied from interface:IParser
Encodes any FHIR element to a writer. If aresource object
is passed in, the resource will be encoded using standard FHIR encoding rules. If aprimitive datatype
is passed in, the string value of the primitive type is encoded. Any extensions on the primitive type are not encoded. If any other object is passed in, a fragment is encoded. The format of the fragment depends on the encoding:- JSON: The fragment is output as a simple JSON object, exactly as it would appear within an encoded resource.
- XML: The fragment is output as an XML element as it would appear within an encoded resource, however it is wrapped in an element called
<element>
in order to avoid producing a document with multiple root tags. - RDF/Turtle: This mode is not supported and will throw an
InternalErrorException
- Specified by:
encodeToWriter
in interfaceIParser
- Throws:
DataFormatException
IOException
-
encodeResourceToWriter
protected void encodeResourceToWriter(IBaseResource theResource, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) throws IOException - Throws:
IOException
-
encodeToWriter
protected void encodeToWriter(IBase theElement, Writer theWriter, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) throws IOException - Throws:
IOException
-
fixContainedResourceId
-
getCompositeElementId
-
getDontStripVersionsFromReferencesAtPaths
Description copied from interface:IParser
Returns the value supplied toIParser.setDontStripVersionsFromReferencesAtPaths(String...)
ornull
if no value has been set for this parser (in which case the default from theParserOptions
will be used).- Specified by:
getDontStripVersionsFromReferencesAtPaths
in interfaceIParser
- See Also:
-
getEncodeForceResourceId
Description copied from interface:IParser
If not set to null (as is the default) this ID will be used as the ID in any resources encoded by this parser- Specified by:
getEncodeForceResourceId
in interfaceIParser
-
setEncodeForceResourceId
Description copied from interface:IParser
When encoding, force this resource ID to be encoded as the resource ID- Specified by:
setEncodeForceResourceId
in interfaceIParser
-
getErrorHandler
-
getExtensionMetadataKeys
protected List<Map.Entry<ResourceMetadataKeyEnum<?>,Object>> getExtensionMetadataKeys(IResource resource) -
getExtensionUrl
-
getMetaTagsForEncoding
protected TagList getMetaTagsForEncoding(IResource theIResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
getPreferTypes
Description copied from interface:IParser
Gets the preferred types, as set usingIParser.setPreferTypes(List)
- Specified by:
getPreferTypes
in interfaceIParser
- Returns:
- Returns the preferred types, or
null
- See Also:
-
setPreferTypes
Description copied from interface:IParser
If set, when parsing resources the parser will try to use the given types when possible, in the order that they are provided (from highest to lowest priority). For example, if a custom type which declares to implement the Patient resource is passed in here, and the parser is parsing a Bundle containing a Patient resource, the parser will use the given custom type.This feature is related to, but not the same as the
FhirContext.setDefaultTypeForProfile(String, Class)
feature.setDefaultTypeForProfile
is used to specify a type to be used when a resource explicitly declares support for a given profile. This feature specifies a type to be used irrespective of the profile declaration in the metadata statement.- Specified by:
setPreferTypes
in interfaceIParser
- Parameters:
thePreferTypes
- The preferred types, ornull
-
getProfileTagsForEncoding
protected <T extends IPrimitiveType<String>> List<T> getProfileTagsForEncoding(IBaseResource theResource, List<T> theProfiles) -
getServerBaseUrl
-
getStripVersionsFromReferences
Description copied from interface:IParser
If set totrue
(which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to
false
.- Specified by:
getStripVersionsFromReferences
in interfaceIParser
- Returns:
- Returns the parser instance's configuration setting for stripping versions from resource references when
encoding. This method will return
null
if no value is set, in which case the value from theParserOptions
will be used (default istrue
) - See Also:
-
getSuppressNarratives
Deprecated.If set totrue
(default isfalse
), narratives will not be included in the encoded values. -
isChildContained
protected boolean isChildContained(BaseRuntimeElementDefinition<?> childDef, boolean theIncludedResource) -
isEncodeElementsAppliesToChildResourcesOnly
Description copied from interface:IParser
If set totrue
(default is false), the values supplied toIParser.setEncodeElements(Set)
will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)- Specified by:
isEncodeElementsAppliesToChildResourcesOnly
in interfaceIParser
-
setEncodeElementsAppliesToChildResourcesOnly
public void setEncodeElementsAppliesToChildResourcesOnly(boolean theEncodeElementsAppliesToChildResourcesOnly) Description copied from interface:IParser
If set totrue
(default is false), the values supplied toIParser.setEncodeElements(Set)
will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)- Specified by:
setEncodeElementsAppliesToChildResourcesOnly
in interfaceIParser
-
isOmitResourceId
Description copied from interface:IParser
Returns true if resource IDs should be omitted- Specified by:
isOmitResourceId
in interfaceIParser
- See Also:
-
isSummaryMode
Description copied from interface:IParser
Is the parser in "summary mode"? SeeIParser.setSummaryMode(boolean)
for information- Specified by:
isSummaryMode
in interfaceIParser
- See Also:
-
isSuppressNarratives
If set totrue
(default isfalse
), narratives will not be included in the encoded values.- Since:
- 1.2
-
parseResource
Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theInputStream
- The InputStream to parse input from (charset is assumed to be UTF-8). Note that the stream will not be closed by the parser upon completion.- Returns:
- A parsed resource. Note that the returned object will be an instance of
IResource
orIAnyResource
depending on the specific FhirContext which created this parser. - Throws:
DataFormatException
- If the resource can not be parsed because the data is not recognized or invalid for any reason
-
parseResource
public <T extends IBaseResource> T parseResource(Class<T> theResourceType, InputStream theInputStream) throws DataFormatException Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theResourceType
- The resource type to use. This can be used to explicitly specify a class which extends a built-in type (e.g. a custom type extending the default Patient class)theInputStream
- The InputStream to parse input from, with an implied charset of UTF-8. Note that the InputStream will not be closed by the parser upon completion.- Returns:
- A parsed resource
- Throws:
DataFormatException
- If the resource can not be parsed because the data is not recognized or invalid for any reason
-
parseResource
public <T extends IBaseResource> T parseResource(Class<T> theResourceType, Reader theReader) throws DataFormatException Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theResourceType
- The resource type to use. This can be used to explicitly specify a class which extends a built-in type (e.g. a custom type extending the default Patient class)theReader
- The reader to parse input from. Note that the Reader will not be closed by the parser upon completion.- Returns:
- A parsed resource
- Throws:
DataFormatException
- If the resource can not be parsed because the data is not recognized or invalid for any reason
-
parseResource
Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theResourceType
- The resource type to use. This can be used to explicitly specify a class which extends a built-in type (e.g. a custom type extending the default Patient class)theMessageString
- The string to parse- Returns:
- A parsed resource
-
parseResource
public IBaseResource parseResource(Reader theReader) throws ConfigurationException, DataFormatException Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theReader
- The reader to parse input from. Note that the Reader will not be closed by the parser upon completion.- Returns:
- A parsed resource. Note that the returned object will be an instance of
IResource
orIAnyResource
depending on the specific FhirContext which created this parser. - Throws:
DataFormatException
- If the resource can not be parsed because the data is not recognized or invalid for any reasonConfigurationException
-
parseResource
public IBaseResource parseResource(String theMessageString) throws ConfigurationException, DataFormatException Description copied from interface:IParser
Parses a resource- Specified by:
parseResource
in interfaceIParser
- Parameters:
theMessageString
- The string to parse- Returns:
- A parsed resource. Note that the returned object will be an instance of
IResource
orIAnyResource
depending on the specific FhirContext which created this parser. - Throws:
DataFormatException
- If the resource can not be parsed because the data is not recognized or invalid for any reasonConfigurationException
-
preProcessValues
protected List<? extends IBase> preProcessValues(BaseRuntimeChildDefinition theMetaChildUncast, IBaseResource theResource, List<? extends IBase> theValues, BaseParser.CompositeChildElement theCompositeChildElement, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
setDontStripVersionsFromReferencesAtPaths
Description copied from interface:IParser
If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process. This setting has no effect on the parsing process.This method provides a finer-grained level of control than
IParser.setStripVersionsFromReferences(Boolean)
and any paths specified by this method will be encoded even ifIParser.setStripVersionsFromReferences(Boolean)
has been set totrue
(which is the default)- Specified by:
setDontStripVersionsFromReferencesAtPaths
in interfaceIParser
- Parameters:
thePaths
- A collection of paths for which the resource versions will not be removed automatically when serializing, e.g. "Patient.managingOrganization" or "AuditEvent.object.reference". Note that only resource name and field names with dots separating is allowed here (no repetition indicators, FluentPath expressions, etc.). Set tonull
to use the value set in theParserOptions
- Returns:
- Returns a reference to
this
parser so that method calls can be chained together - See Also:
-
setDontStripVersionsFromReferencesAtPaths
Description copied from interface:IParser
If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process. This setting has no effect on the parsing process.This method provides a finer-grained level of control than
IParser.setStripVersionsFromReferences(Boolean)
and any paths specified by this method will be encoded even ifIParser.setStripVersionsFromReferences(Boolean)
has been set totrue
(which is the default)- Specified by:
setDontStripVersionsFromReferencesAtPaths
in interfaceIParser
- Parameters:
thePaths
- A collection of paths for which the resource versions will not be removed automatically when serializing, e.g. "Patient.managingOrganization" or "AuditEvent.object.reference". Note that only resource name and field names with dots separating is allowed here (no repetition indicators, FluentPath expressions, etc.). Set tonull
to use the value set in theParserOptions
- Returns:
- Returns a reference to
this
parser so that method calls can be chained together - See Also:
-
setOmitResourceId
Description copied from interface:IParser
If set totrue
(default isfalse
) the ID of any resources being encoded will not be included in the output. Note that this does not apply to contained resources, only to root resources. In other words, if this is set totrue
, contained resources will still have local IDs but the outer/containing ID will not have an ID.If the resource being encoded is a Bundle or Parameters resource, this setting only applies to the outer resource being encoded, not any resources contained within.
- Specified by:
setOmitResourceId
in interfaceIParser
- Parameters:
theOmitResourceId
- Should resource IDs be omitted- Returns:
- Returns a reference to
this
parser so that method calls can be chained together
-
setOverrideResourceIdWithBundleEntryFullUrl
public IParser setOverrideResourceIdWithBundleEntryFullUrl(Boolean theOverrideResourceIdWithBundleEntryFullUrl) Description copied from interface:IParser
If set totrue
(which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined. This behavior happens when parsing the source data into a Bundle object. Set this tofalse
if this is not the desired behavior (e.g. the client code wishes to perform additional validation checks between the fullUrl and the resource id).- Specified by:
setOverrideResourceIdWithBundleEntryFullUrl
in interfaceIParser
- Parameters:
theOverrideResourceIdWithBundleEntryFullUrl
- Set this tofalse
to prevent the parser from overriding resource ids with the Bundle.entry.fullUrl (ornull
to apply the default setting from theParserOptions
)- Returns:
- Returns a reference to
this
parser so that method calls can be chained together - See Also:
-
setParserErrorHandler
Description copied from interface:IParser
Registers an error handler which will be invoked when any parse errors are found- Specified by:
setParserErrorHandler
in interfaceIParser
- Parameters:
theErrorHandler
- The error handler to set. Must not be null.
-
setServerBaseUrl
Description copied from interface:IParser
Sets the server's base URL used by this parser. If a value is set, resource references will be turned into relative references if they are provided as absolute URLs but have a base matching the given base.- Specified by:
setServerBaseUrl
in interfaceIParser
- Parameters:
theUrl
- The base URL, e.g. "http://example.com/base"- Returns:
- Returns an instance of
this
parser so that method calls can be chained together
-
setStripVersionsFromReferences
Description copied from interface:IParser
If set totrue
(which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to
false
.This method provides the ability to globally disable reference encoding. If finer-grained control is needed, use
IParser.setDontStripVersionsFromReferencesAtPaths(String...)
- Specified by:
setStripVersionsFromReferences
in interfaceIParser
- Parameters:
theStripVersionsFromReferences
- Set this tofalse
to prevent the parser from removing resource versions from references (or
null
to apply the default setting from theParserOptions
- Returns:
- Returns a reference to
this
parser so that method calls can be chained together - See Also:
-
setSummaryMode
Description copied from interface:IParser
If set totrue
(default isfalse
) only elements marked by the FHIR specification as being "summary elements" will be included.It is possible to modify the default summary mode element inclusions for this parser instance by invoking
IParser.setEncodeElements(Set)
orIParser.setDontEncodeElements(Collection)
. It is also possible to modify the default summary mode element inclusions for all parsers generated for a givenFhirContext
by accessingFhirContext.getParserOptions()
followed byParserOptions.setEncodeElementsForSummaryMode(Collection)
and/orParserOptions.setDontEncodeElementsForSummaryMode(Collection)
.For compatibility reasons with other frameworks, when encoding a
CapabilityStatement
resource in summary mode, extensions are always encoded, even though the FHIR Specification does not consider them to be summary elements.- Specified by:
setSummaryMode
in interfaceIParser
- Returns:
- Returns a reference to
this
parser so that method calls can be chained together
-
setSuppressNarratives
Description copied from interface:IParser
If set totrue
(default isfalse
), narratives will not be included in the encoded values.- Specified by:
setSuppressNarratives
in interfaceIParser
-
shouldAddSubsettedTag
protected boolean shouldAddSubsettedTag(ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
shouldEncodeResourceId
protected boolean shouldEncodeResourceId(IBaseResource theResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
shouldEncodeResourceMeta
protected boolean shouldEncodeResourceMeta(IResource theResource, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) Used for DSTU2 only -
shouldEncodePath
protected boolean shouldEncodePath(IResource theResource, String thePath, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) Used for DSTU2 only -
throwExceptionForUnknownChildType
protected void throwExceptionForUnknownChildType(BaseRuntimeChildDefinition nextChild, Class<? extends IBase> theType) -
shouldEncodeResource
protected boolean shouldEncodeResource(String theName, ca.uhn.fhir.parser.BaseParser.EncodeContext theEncodeContext) -
containResourcesInReferences
-
extractMetadataListNotNull
protected static <T> List<T> extractMetadataListNotNull(IResource resource, ResourceMetadataKeyEnum<List<T>> key)
-
isSuppressNarratives()