aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java')
-rw-r--r--pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java
new file mode 100644
index 00000000..c2e6b81d
--- /dev/null
+++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/CheckSignatureBlockParameters.java
@@ -0,0 +1,31 @@
+package at.gv.egiz.pdfas.common.utils;
+
+import at.gv.egiz.pdfas.common.settings.DefaultSignatureProfileSettings;
+
+import java.util.Map;
+
+public class CheckSignatureBlockParameters {
+
+ public static boolean checkSignatureBlockParameterMapIsValid(Map<String, String> map, String keyRegex,
+ String valueRegex) {
+ if(keyRegex == null || keyRegex.length() == 0) {
+ keyRegex = DefaultSignatureProfileSettings.SIG_BLOCK_PARAMETER_DEFAULT_KEY_REGEX;
+ }
+ if(valueRegex == null || valueRegex.length() == 0) {
+ valueRegex = DefaultSignatureProfileSettings.SIG_BLOCK_PARAMETER_DEFAULT_VALUE_REGEX;
+ }
+ for(String key : map.keySet()){
+ if(isValid(key, keyRegex) == false)
+ return false;
+ if(isValid(map.get(key), valueRegex) == false)
+ return false;
+ }
+
+ return true;
+ }
+
+ public static boolean isValid(String s, String regex) {
+ return s.matches(regex);
+ }
+
+}