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.java31
1 files changed, 17 insertions, 14 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 767172823..896feed9e 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
@@ -231,6 +231,8 @@ public class AuthenticationSession implements Serializable {
private boolean ssoRequested = false;
+ private String QAALevel = null;
+
// private OAuth20SessionObject oAuth20SessionObject;
// /**
@@ -1005,20 +1007,21 @@ public class AuthenticationSession implements Serializable {
public IPersonalAttributeList getStorkAttributes() {
return this.storkAttributes;
}
-
+
/**
-// * @return the oAuth20SessionObject
-// */
-// public OAuth20SessionObject getoAuth20SessionObject() {
-// return oAuth20SessionObject;
-// }
-//
-// /**
-// * @param oAuth20SessionObject
-// * the oAuth20SessionObject to set
-// */
-// public void setoAuth20SessionObject(OAuth20SessionObject oAuth20SessionObject) {
-// this.oAuth20SessionObject = oAuth20SessionObject;
-// }
+ * @return the qAALevel
+ */
+ public String getQAALevel() {
+ return QAALevel;
+ }
+
+ /**
+ * @param qAALevel the qAALevel to set
+ */
+ public void setQAALevel(String qAALevel) {
+ QAALevel = qAALevel;
+ }
+
+
}