diff options
| author | Paul-Christian Volkmer | 2023-03-22 12:04:10 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-03-22 12:04:10 +0100 |
| commit | a80295c4c884d779bf4d2578e737579ead0ebe71 (patch) | |
| tree | d9f020cfb549fc12c6a2ce78002b447496056ded /src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java | |
| parent | 3f3a23ccd2d61b4c6a1c9016d0de3a78ec35b853 (diff) | |
Extraktion des Mappings Prozedur zu Prozedurwerten und Auswahl des Mappers
Aktuell sind nur die beiden Formulare
* OS.Systemische Therapie
* OS.Systemische Therapie.VarianteUKW
bekannt. Beide lassen sich über den extrahierten Mapper in eine Map mit
Prozedurwerten mappen.
Diffstat (limited to 'src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java')
| -rw-r--r-- | src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java b/src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java new file mode 100644 index 0000000..f205554 --- /dev/null +++ b/src/main/java/DNPM/services/systemtherapie/ProzedurToProzedurwerteMapper.java @@ -0,0 +1,14 @@ +package DNPM.services.systemtherapie; + +import de.itc.onkostar.api.Procedure; + +import java.util.Map; +import java.util.Optional; +import java.util.function.Function; + +/** + * Mapper um ein Systemtherapieformular in eine Optional-Map mit Prozedurwerten umzuwandeln + * + * @since 0.2.0 + */ +public interface ProzedurToProzedurwerteMapper extends Function<Procedure, Optional<Map<String, String>>> {} |
