aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2016-03-02 11:20:36 +0100
committerThomas Lenz <tlenz@iaik.tugraz.at>2016-03-02 11:20:36 +0100
commit48fd33725c53136fe505067b93390b39e19c41b7 (patch)
tree94753d1d8d9e7757dab191183d4c8a87c2c95fb9 /id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data
parentad25761f481988ef6e52fbecc28606e0897ecb9c (diff)
downloadmoa-id-spss-48fd33725c53136fe505067b93390b39e19c41b7.tar.gz
moa-id-spss-48fd33725c53136fe505067b93390b39e19c41b7.tar.bz2
moa-id-spss-48fd33725c53136fe505067b93390b39e19c41b7.zip
temporarily commit to save state
Diffstat (limited to 'id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data/FederatedAuthenticatenContainer.java125
1 files changed, 125 insertions, 0 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data/FederatedAuthenticatenContainer.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data/FederatedAuthenticatenContainer.java
new file mode 100644
index 000000000..9af247714
--- /dev/null
+++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data/FederatedAuthenticatenContainer.java
@@ -0,0 +1,125 @@
+/*
+ * Copyright 2014 Federal Chancellery Austria
+ * MOA-ID has been developed in a cooperation between BRZ, the Federal
+ * Chancellery Austria - ICT staff unit, and Graz University of Technology.
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://www.osor.eu/eupl/
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ *
+ * This product combines work with different licenses. See the "NOTICE" text
+ * file for details on the various modules and licenses.
+ * The "NOTICE" text file is part of the distribution. Any derivative works
+ * that you distribute must include a readable copy of the "NOTICE" text file.
+ */
+package at.gv.egovernment.moa.id.data;
+
+import java.io.Serializable;
+
+import at.gv.egovernment.moa.id.util.Random;
+
+/**
+ * @author tlenz
+ *
+ */
+public class FederatedAuthenticatenContainer implements Serializable {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 6075571915585105988L;
+
+ private String id;
+ private String moaSessionID;
+
+ private String idpEntityID;
+ private String userNameID;
+ private String userQAALevel;
+
+ /**
+ * Build a new data-container for federated authentication with Attribute-Query
+ *
+ */
+ public FederatedAuthenticatenContainer() {
+ this.id = Random.nextRandom();
+
+ }
+
+ /**
+ * Get the identifier of this container
+ *
+ * @return the identifier of this container, but never null
+ */
+ public String getId() {
+ return id;
+ }
+
+ /**
+ * Get the MOASessionID, of the corresponding MOASession
+ *
+ * @return the moaSessionID, or null if no MOASession exists
+ */
+ public String getMoaSessionID() {
+ return moaSessionID;
+ }
+ /**
+ * @param moaSessionID the moaSessionID to set
+ */
+ public void setMoaSessionID(String moaSessionID) {
+ this.moaSessionID = moaSessionID;
+ }
+ /**
+ * Get the Entity of the federated IDP, which has the authentication data
+ *
+ * @return the idpEntityID, but never null
+ */
+ public String getIdpEntityID() {
+ return idpEntityID;
+ }
+ /**
+ * @param idpEntityID the idpEntityID to set
+ */
+ public void setIdpEntityID(String idpEntityID) {
+ this.idpEntityID = idpEntityID;
+ }
+ /**
+ * Get the SAML2 NameID of the user, which is used to identify the user on the federated IDP
+ *
+ * @return the SAML2 NameID, but never null
+ */
+ public String getUserNameID() {
+ return userNameID;
+ }
+ /**
+ * @param userNameID the userNameID to set
+ */
+ public void setUserNameID(String userNameID) {
+ this.userNameID = userNameID;
+ }
+ /**
+ * Get the SAML2 QAA-level, which should be send to the federated IDP
+ *
+ * @return the userQAALevel, but never null
+ */
+ public String getUserQAALevel() {
+ return userQAALevel;
+ }
+ /**
+ * @param userQAALevel the userQAALevel to set
+ */
+ public void setUserQAALevel(String userQAALevel) {
+ this.userQAALevel = userQAALevel;
+ }
+
+
+
+
+}