From 1c06339a8232dcc1c6d9ca471698732248e62f02 Mon Sep 17 00:00:00 2001 From: bschnalzer Date: Mon, 17 Jul 2017 08:20:30 +0200 Subject: Removed OnlineBKU Option --- .../gv/egiz/pdfas/web/config/WebConfiguration.java | 28 ++-------------------- .../egiz/pdfas/web/servlets/ExternSignServlet.java | 9 +------ pdf-as-web/src/main/webapp/index.jsp | 9 ------- pdf-as-web/src/main/webapp/testindex.jsp | 9 ------- 4 files changed, 3 insertions(+), 52 deletions(-) diff --git a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java index 6c3b4a76..cdd66a1d 100644 --- a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java +++ b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/config/WebConfiguration.java @@ -207,7 +207,7 @@ public class WebConfiguration implements IConfigurationConstants { } public static String getLocalBKUURL() { - if(!getLocalBKUEnabled()) { + if(getLocalBKUEnabled()) { String overwrite = properties.getProperty(CONFIG_BKU_URL); if(overwrite == null) { overwrite = properties.getProperty(LOCAL_BKU_URL); @@ -220,22 +220,8 @@ public class WebConfiguration implements IConfigurationConstants { return null; } - public static String getOnlineBKUURL() { - if(!getOnlineBKUEnabled()) { - String overwrite = properties.getProperty(MOC_SIGN_URL); - if(overwrite == null) { - overwrite = properties.getProperty(ONLINE_BKU_URL); - if(overwrite == null) { - overwrite = PdfAsHelper.getPdfAsConfig().getValue(MOC_SIGN_URL); - } - } - return overwrite; - } - return null; - } - public static String getHandyBKUURL() { - if(!getMobileBKUEnabled()) { + if(getMobileBKUEnabled()) { String overwrite = properties.getProperty(MOBILE_SIGN_URL); if(overwrite == null) { overwrite = properties.getProperty(MOBILE_BKU_URL); @@ -427,16 +413,6 @@ public class WebConfiguration implements IConfigurationConstants { return false; } - public static boolean getOnlineBKUEnabled() { - String value = properties.getProperty(ONLINE_BKU_ENABLED); - if (value != null) { - if (value.equals("true")) { - return true; - } - } - return false; - } - public static boolean getMobileBKUEnabled() { String value = properties.getProperty(MOBILE_BKU_ENABLED); if (value != null) { diff --git a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/servlets/ExternSignServlet.java b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/servlets/ExternSignServlet.java index f21447dd..b986d175 100644 --- a/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/servlets/ExternSignServlet.java +++ b/pdf-as-web/src/main/java/at/gv/egiz/pdfas/web/servlets/ExternSignServlet.java @@ -358,15 +358,8 @@ public class ExternSignServlet extends HttpServlet { throw new PdfAsWebException("Invalid connector bku is not supported"); } } - - if(connector.equals("onlinebku")) { - if(WebConfiguration.getLocalBKUURL() == null) { - throw new PdfAsWebException("Invalid connector onlinebku is not supported"); - } - } - if(connector.equals("mobilebku")) { - if(WebConfiguration.getLocalBKUURL() == null) { + if(WebConfiguration.getHandyBKUURL() == null) { throw new PdfAsWebException("Invalid connector mobilebku is not supported"); } } diff --git a/pdf-as-web/src/main/webapp/index.jsp b/pdf-as-web/src/main/webapp/index.jsp index f3a3b957..ae3ef88d 100644 --- a/pdf-as-web/src/main/webapp/index.jsp +++ b/pdf-as-web/src/main/webapp/index.jsp @@ -27,15 +27,6 @@ <% } %> - <% - if (WebConfiguration.getOnlineBKUURL() != null) { - %> - - - <% - } - %> <% if (WebConfiguration.getHandyBKUURL() != null) { %> diff --git a/pdf-as-web/src/main/webapp/testindex.jsp b/pdf-as-web/src/main/webapp/testindex.jsp index 8d49caeb..fea19ea8 100644 --- a/pdf-as-web/src/main/webapp/testindex.jsp +++ b/pdf-as-web/src/main/webapp/testindex.jsp @@ -27,15 +27,6 @@ <% } %> - <% - if (WebConfiguration.getOnlineBKUURL() != null) { - %> - - - <% - } - %> <% if (WebConfiguration.getHandyBKUURL() != null) { %> -- cgit v1.2.3