diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2015-09-18 12:05:14 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2015-09-18 12:05:14 +0200 |
commit | 56b710a86d5bb559c0043f4c5bf1e574f39f4a68 (patch) | |
tree | 597d52b0c62cc734d7b2e56b27160a6b2b330bc1 /id | |
parent | 3d969a7b02f3e23a1b29150b5c39add8dcb146e1 (diff) | |
download | moa-id-spss-56b710a86d5bb559c0043f4c5bf1e574f39f4a68.tar.gz moa-id-spss-56b710a86d5bb559c0043f4c5bf1e574f39f4a68.tar.bz2 moa-id-spss-56b710a86d5bb559c0043f4c5bf1e574f39f4a68.zip |
fix merge problem in STORK V-IDP consentEvaluator module
Diffstat (limited to 'id')
-rw-r--r-- | id/server/modules/module-stork/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/id/server/modules/module-stork/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java b/id/server/modules/module-stork/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java index bde0f362d..947accf8e 100644 --- a/id/server/modules/module-stork/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java +++ b/id/server/modules/module-stork/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/ConsentEvaluator.java @@ -145,7 +145,7 @@ public class ConsentEvaluator implements IAction { Template template = velocityEngine.getTemplate("/resources/templates/stork2_consent.html"); VelocityContext context = new VelocityContext(); - context.put("action", AuthConfigurationProviderFactory.getInstance().getPublicURLPrefix() + "/stork2/CompleteAuthentication?" + ARTIFACT_ID + "=" + newArtifactId); + context.put("action", AuthConfigurationProviderFactory.getInstance().getPublicURLPrefix() + "/stork2/GetConsent?" + ARTIFACT_ID + "=" + newArtifactId); // assemble table String table = ""; |