Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit d4ea42d

Browse files
committed
impl fixes
1 parent 5366e34 commit d4ea42d

14 files changed

Lines changed: 459 additions & 48 deletions

File tree

codex-process-data-transfer/src/main/java/de/netzwerk_universitaetsmedizin/codex/processes/data_transfer/client/ConsentClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
public interface ConsentClient
66
{
7-
List<String> getConsentOidsFor(String dicPseudonym);
7+
List<String> getConsentOidsFor(String dicSourceAndPseudonym);
88
}

codex-process-data-transfer/src/main/java/de/netzwerk_universitaetsmedizin/codex/processes/data_transfer/client/ConsentClientFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ public ConsentClient getConsentClient()
1717
return new ConsentClient()
1818
{
1919
@Override
20-
public List<String> getConsentOidsFor(String dicPseudonym)
20+
public List<String> getConsentOidsFor(String dicSourceAndPseudonym)
2121
{
22-
logger.warn("Returning all allowed OIDs");
22+
logger.warn("Returning 'all allowed' OIDs for DIC pseudonym {}", dicSourceAndPseudonym);
2323

24-
return Arrays.asList(BASE_OID + ".24.5.1.1", BASE_OID + ".24.5.1.35", BASE_OID + ".24.5.1.37");
24+
return Arrays.asList(BASE_OID + ".24.5.1.1", BASE_OID + ".24.5.1.34", BASE_OID + ".24.5.1.37");
2525
}
2626
};
2727
}

0 commit comments

Comments
 (0)