aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2016-03-02 22:10:36 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2016-03-02 22:10:36 +0100
commitda937437e46e06365072820aa555d4cb3f9f9110 (patch)
tree3c9f062ab6f8c87abc063db44d8828a4065329ba /id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data
parent48fd33725c53136fe505067b93390b39e19c41b7 (diff)
downloadmoa-id-spss-da937437e46e06365072820aa555d4cb3f9f9110.tar.gz
moa-id-spss-da937437e46e06365072820aa555d4cb3f9f9110.tar.bz2
moa-id-spss-da937437e46e06365072820aa555d4cb3f9f9110.zip
next parts of new federated authentication implementation
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, 0 insertions, 125 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
deleted file mode 100644
index 9af247714..000000000
--- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/data/FederatedAuthenticatenContainer.java
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
- * 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;
- }
-
-
-
-
-}