DaoConfig#setAllowInlineMatchUrlReferences now defaults to true

This commit is contained in:
James Agnew 2017-03-29 15:23:23 +08:00
parent 93cfb2360c
commit c6555ddd4f
2 changed files with 10 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class DaoConfig {
// ***
// update setter javadoc if default changes
// ***
private boolean myAllowInlineMatchUrlReferences = false;
private boolean myAllowInlineMatchUrlReferences = true;
private boolean myAllowMultipleDelete;
private boolean myDefaultSearchParamsCanBeOverridden = false;
@ -296,7 +296,9 @@ public class DaoConfig {
* to "Patient?identifier=12345", this is reference match URL will be resolved and replaced according
* to the usual match URL rules.
* <p>
* Default is false for now, as this is an experimental feature.
* Default is {@link true} beginning in HAPI FHIR 2.4, since this
* feature is now specified in the FHIR specification. (Previously it
* was an experimental/rpposed feature)
* </p>
*
* @since 1.5

View File

@ -26,6 +26,12 @@
Web testing UI displayed an error when a transaction was pasted into the UI
for a DSTU2 server. Thanks to Suresh Kumar for reporting!
</action>
<action type="add">
DaoConfig#setAllowInlineMatchUrlReferences() now defaults to
<![CDATA[<code>true</code>]]> since inline conditional references
are now a part of the FHIR specification. Thanks to Jan Dědek for
pointing this out!
</action>
</release>
<release version="2.3" date="2017-03-18">
<action type="add">