aboutsummaryrefslogtreecommitdiff
path: root/moaSig
diff options
context:
space:
mode:
Diffstat (limited to 'moaSig')
-rw-r--r--moaSig/moa-sig-lib/src/main/java/at/gv/egovernment/moa/spss/util/AdESResultUtils.java47
1 files changed, 28 insertions, 19 deletions
diff --git a/moaSig/moa-sig-lib/src/main/java/at/gv/egovernment/moa/spss/util/AdESResultUtils.java b/moaSig/moa-sig-lib/src/main/java/at/gv/egovernment/moa/spss/util/AdESResultUtils.java
index 41d363d..b6bba93 100644
--- a/moaSig/moa-sig-lib/src/main/java/at/gv/egovernment/moa/spss/util/AdESResultUtils.java
+++ b/moaSig/moa-sig-lib/src/main/java/at/gv/egovernment/moa/spss/util/AdESResultUtils.java
@@ -113,29 +113,38 @@ public class AdESResultUtils {
//add only the completed form result to response
String completedForm = adesFormVerification.getCompleteForm();
- if (MiscUtil.isNotEmpty(completedForm)) {
- Logger.info("Form-validation found completed form: " + completedForm);
- AdESVerificationResult subResult = adesFormVerification.getSubResult(completedForm);
- checkSubResult(subResult, completedForm, adesList);
- if (Logger.isDebugEnabled())
- Logger.debug("Detailed Result: \n" + subResult.getInfo());
-
- } else
- Logger.info("Form-valdition found NO completed form.");
+ Logger.info("Find complete Form: " + completedForm);
- if (Logger.isDebugEnabled())
- Logger.debug("Full form-validation result: \n" + adesFormVerification.getInfo());
+ /*
+ * This code only returns the result of the completed form
+ */
+// if (MiscUtil.isNotEmpty(completedForm)) {
+// Logger.info("Form-validation found completed form: " + completedForm);
+// AdESVerificationResult subResult = adesFormVerification.getSubResult(completedForm);
+// checkSubResult(subResult, completedForm, adesList);
+// if (Logger.isDebugEnabled())
+// Logger.debug("Detailed Result: \n" + subResult.getInfo());
+//
+// } else
+// Logger.info("Form-valdition found NO completed form.");
+//
+// if (Logger.isDebugEnabled())
+// Logger.debug("Full form-validation result: \n" + adesFormVerification.getInfo());
+
+ /*
+ * This code returns the result for all forms
+ */
//add results for all form types to response
-// checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_LTA),
-// SignatureVerificationProfile.LEVEL_LTA, adesList);
-// checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_LT),
-// SignatureVerificationProfile.LEVEL_LT, adesList);
-// checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_T),
-// SignatureVerificationProfile.LEVEL_T, adesList);
-// checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_B),
-// SignatureVerificationProfile.LEVEL_B, adesList);
+ checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_LTA),
+ SignatureVerificationProfile.LEVEL_LTA, adesList);
+ checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_LT),
+ SignatureVerificationProfile.LEVEL_LT, adesList);
+ checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_T),
+ SignatureVerificationProfile.LEVEL_T, adesList);
+ checkSubResult(adesFormVerification.getSubResult(SignatureVerificationProfile.LEVEL_B),
+ SignatureVerificationProfile.LEVEL_B, adesList);
return adesList;
}