-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed enum values per slack conversation
- Loading branch information
Ken Stevens
committed
Nov 22, 2024
1 parent
2d3d027
commit cead71d
Showing
12 changed files
with
76 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_8_0/6495-mdm-mode.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
type: add | ||
issue: 6495 | ||
title: "A new MdmSettings mode field was added (default value LINK_PROCESSING). When the MdmSettings mode is set to | ||
RULES mode, then MDM operations are disabled and no MDM processing occurs. This is useful if, for example, | ||
title: "A new MdmSettings mode field was added (default value MATCH_AND_LINK). When the MdmSettings mode is set to | ||
MATCH_ONLY mode, then MDM operations are disabled and no MDM processing occurs. This is useful if, for example, | ||
you want to use the Patient/$match operation without having the overhead of creating links and golden resources." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 24 additions & 5 deletions
29
hapi-fhir-server-mdm/src/main/java/ca/uhn/fhir/mdm/api/MdmModeEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,35 @@ | ||
/*- | ||
* #%L | ||
* HAPI FHIR - Master Data Management | ||
* %% | ||
* Copyright (C) 2014 - 2024 Smile CDR, Inc. | ||
* %% | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* #L% | ||
*/ | ||
package ca.uhn.fhir.mdm.api; | ||
|
||
public enum MdmModeEnum { | ||
/** | ||
* Normal MDM processing that creates Golden Resources and maintains links | ||
*/ | ||
LINK_PROCESSING, | ||
MATCH_AND_LINK, | ||
/** | ||
* in RULES mode, MDM operations are disabled and no MDM processing occurs. This is useful if, for example, | ||
* in MATCH_ONLY mode, MDM operations are disabled and no MDM processing occurs. This is useful if, for example, | ||
* you want to use the Patient/$match operation without having the overhead of creating links and golden resources. | ||
*/ | ||
RULES | ||
MATCH_ONLY | ||
|
||
// TODO KHS possible future mode DEDUPLICATION where incoming matched resources have their data merged into the golden | ||
// resource and then deleted with all references updated to point to the golden resource | ||
// TODO KHS possible future mode MATCH_AND_MERGE where incoming matched resources have their data merged into the | ||
// golden resource and then deleted with all references updated to point to the golden resource | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters