aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/iaik
diff options
context:
space:
mode:
authorThomas Knall <t.knall@datentechnik-innovation.com>2015-01-22 12:13:07 +0100
committerThomas Knall <t.knall@datentechnik-innovation.com>2015-01-22 12:13:07 +0100
commitad40ae9233c5f2a32c983962d655e686af546677 (patch)
treebf6c2cbef9f0f6d7050b69a3d13b87d82cc500bc /id/server/idserverlib/src/main/java/iaik
parenta1bb34634bf4f30fc565109358eb51bd1111dc21 (diff)
downloadmoa-id-spss-ad40ae9233c5f2a32c983962d655e686af546677.tar.gz
moa-id-spss-ad40ae9233c5f2a32c983962d655e686af546677.tar.bz2
moa-id-spss-ad40ae9233c5f2a32c983962d655e686af546677.zip
Add mandate process support (MOAID-60).
- Refactor moa-id auth web.xml -- Group the servlets with their corresponding mappings. -- Replace servlets for mappings "/GetMISSessionID", "/VerifyAuthBlock", "/VerifyCertificate" and "/VerifyIdentityLink". -- Remove disabled declarations. - Replace link http://jigsaw.w3.org/css-validator/images/vcss-blue with https://... within the internal templates (loginFormFull.html, sendAssertionFormFull.html, ...). - Set classes deprecated: GetMISSessionIDServlet, VerifyCertificateServlet - ProcessEngineSignalServlet: make GET delegate to PUT - Replace some "implements MOAIDAuthConstants" with "import static MOAIDAuthConstants.*". - Add detailed Javadoc to *Task.java. - Update DefaultAuthentication.process.xml for mandate - Add GetMISSessionIDTask and VerifyCertificateTask. - Add adapter class for iaik.IAIKRuntimeException in order to satisfy some library's bogus dependendies.
Diffstat (limited to 'id/server/idserverlib/src/main/java/iaik')
-rw-r--r--id/server/idserverlib/src/main/java/iaik/IAIKRuntimeException.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/id/server/idserverlib/src/main/java/iaik/IAIKRuntimeException.java b/id/server/idserverlib/src/main/java/iaik/IAIKRuntimeException.java
new file mode 100644
index 000000000..968d3491d
--- /dev/null
+++ b/id/server/idserverlib/src/main/java/iaik/IAIKRuntimeException.java
@@ -0,0 +1,18 @@
+package iaik;
+
+/**
+ * Adapter class providing {@code iaik.RuntimeException} for libraries that have not been updated in order to consider
+ * the fact that the class {@code IAIKRuntimeException} has been moved.
+ *
+ * @author tknall
+ *
+ */
+public class IAIKRuntimeException extends iaik.server.modules.IAIKRuntimeException {
+
+ private static final long serialVersionUID = 1L;
+
+ public IAIKRuntimeException(String reason, Throwable wrapped, String uniqueIdentifier) {
+ super(reason, wrapped, uniqueIdentifier);
+ }
+
+}