summaryrefslogtreecommitdiff
path: root/src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-04-03 17:35:40 +0200
committerPaul-Christian Volkmer2023-04-03 17:35:40 +0200
commit783dfedd60a80ab4eeca720e7c5644a1a1042698 (patch)
tree4e86d1bcef0eee87704176dbb9163f635b81cfa3 /src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java
parenta97d76e5bbe42cde2a5729efedcdcdcd7c26bbe9 (diff)
Issue #20: Detailimplementierung für UKW mit Formular "Excel-Formular"
Diffstat (limited to 'src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java')
-rw-r--r--src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java b/src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java
index eb6c8ce..4e08f8a 100644
--- a/src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java
+++ b/src/main/java/DNPM/services/consent/ConsentManagerServiceFactory.java
@@ -16,6 +16,8 @@ public class ConsentManagerServiceFactory {
var consentFormName = onkostarApi.getGlobalSetting("consentform");
switch (consentFormName) {
+ case "Excel-Formular":
+ return new UkwConsentManagerService(this.onkostarApi);
case "MR.Consent":
default:
return new MrConsentManagerService(this.onkostarApi);