From 33c49abc111f184ac87076fa735e75877dfbeab3 Mon Sep 17 00:00:00 2001 From: tkellner Date: Wed, 10 Apr 2013 19:32:14 +0000 Subject: Rework mobile BKU handling git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@371 174cde9d-5d70-4d2a-aa98-46368bc2aaf7 --- .../workflow/states/mobilebku/MobileBKUStatus.java | 48 ++++++++++++---------- 1 file changed, 27 insertions(+), 21 deletions(-) (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/mobilebku/MobileBKUStatus.java') diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/mobilebku/MobileBKUStatus.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/mobilebku/MobileBKUStatus.java index 78dad7a5..3066f683 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/mobilebku/MobileBKUStatus.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/mobilebku/MobileBKUStatus.java @@ -36,7 +36,19 @@ public class MobileBKUStatus { * Maximum number of TAN tries! */ public static final int MOBILE_MAX_TAN_TRIES = 3; - + + private String viewstate; + private String eventvalidation; + private String sessionID; + private String phoneNumber; + private String mobilePassword; + private String baseURL; + private String refVal; + private String errorMessage; + private String tan; + private String server; + private int tanTries = MOBILE_MAX_TAN_TRIES; + /** * Constructor * @param provider @@ -45,27 +57,7 @@ public class MobileBKUStatus { this.setPhoneNumber(provider.getDefaultMobileNumber()); this.setMobilePassword(provider.getDefaultMobilePassword()); } - - String viewstate; - - String eventvalidation; - String sessionID; - - String phoneNumber; - - String mobilePassword; - - String baseURL; - - String refVal; - - String errorMessage; - - String tan; - - int tanTries = MOBILE_MAX_TAN_TRIES; - /** * @return the tanTries */ @@ -207,5 +199,19 @@ public class MobileBKUStatus { this.sessionID = sessionID; } + /** + * Return the SL request server + * @return the SL request server + */ + public String getServer() { + return this.server; + } + /** + * Set the SL request server + * @param server the SL request server + */ + public void setServer(String server) { + this.server = server; + } } -- cgit v1.2.3