diff options
author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2015-05-05 16:12:06 +0200 |
---|---|---|
committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2015-05-05 16:12:06 +0200 |
commit | d086e2f7c278b0b5034d058fe8deff34927bf811 (patch) | |
tree | d4edbcbe2e3a9d1096f043ef1aa28a80d1804199 /id/server/idserverlib/src/main/java | |
parent | 4df561f9f19966c92cd658efa0cd3942a0a091d4 (diff) | |
download | moa-id-spss-d086e2f7c278b0b5034d058fe8deff34927bf811.tar.gz moa-id-spss-d086e2f7c278b0b5034d058fe8deff34927bf811.tar.bz2 moa-id-spss-d086e2f7c278b0b5034d058fe8deff34927bf811.zip |
consent request cosmetics
Diffstat (limited to 'id/server/idserverlib/src/main/java')
-rw-r--r-- | id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java index 51e731e8a..865cec5a3 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java @@ -153,6 +153,8 @@ public class ConsentEvaluator implements IAction { table += "<tr><td><input type=\"checkbox\" checked=\"yes\" name=\"" + current.getName() + "\"></td><td>" + current.getName() + "</td></tr>\n"; context.put("tablecontent", table); + for(Entry<String, String> current : oaParam.getFormCustomizaten().entrySet()) + context.put(current.getKey().replace("#", ""), current.getValue()); StringWriter writer = new StringWriter(); template.merge(context, writer); |