aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java30
1 files changed, 28 insertions, 2 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
index 13cebdbff..4bae0300b 100644
--- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
+++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
@@ -119,7 +119,12 @@ public class AuthenticationSession implements Serializable {
* Indicates whether the corresponding online application is a business service or not
*/
private boolean businessService;
-
+
+ /**
+ * Indicates whether the corresponding online application is a stork service or not
+ */
+ private boolean storkService;
+
// Store Mandate
/**
* Use mandate
@@ -584,7 +589,28 @@ public class AuthenticationSession implements Serializable {
public void setBusinessService(boolean businessService) {
this.businessService = businessService;
}
-
+
+
+ /**
+ * Returns the storkService.
+ *
+ * @return <code>true</code> if the corresponding online application is a stork application,
+ * otherwise <code>false</code>
+ */
+ public boolean getStorkService() {
+ return storkService;
+ }
+
+ /**
+ * Sets the storkService variable.
+ *
+ * @param storkService
+ * the value for setting the storkService variable.
+ */
+ public void setStorkService(boolean storkService) {
+ this.storkService = storkService;
+ }
+
/**
* @return template URL
*/