diff options
| author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-03-05 16:03:47 +0100 | 
|---|---|---|
| committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-03-05 16:04:27 +0100 | 
| commit | feaf4279663ede774e6439f4a48820660e1907b2 (patch) | |
| tree | bf85280d4f93f945b4b37d5234ac09b1e2c11f7a | |
| parent | ede824250ba1b26305825e07f85ae39e2eaf2ea9 (diff) | |
| download | moa-id-spss-feaf4279663ede774e6439f4a48820660e1907b2.tar.gz moa-id-spss-feaf4279663ede774e6439f4a48820660e1907b2.tar.bz2 moa-id-spss-feaf4279663ede774e6439f4a48820660e1907b2.zip | |
fixed list override
| -rw-r--r-- | id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/GetArtifactAction.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/GetArtifactAction.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/GetArtifactAction.java index 3f6495a1a..c22f6d25f 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/GetArtifactAction.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/GetArtifactAction.java @@ -78,7 +78,7 @@ public class GetArtifactAction implements IAction {  			// add other stork attributes to MOA assertion if available  			if(null != session.getStorkAttributes()) {  				List<ExtendedSAMLAttribute> moaExtendedSAMLAttibutes = STORKResponseProcessor.addAdditionalSTORKAttributes(session.getStorkAttributes()); -				session.setExtendedSAMLAttributesOA(moaExtendedSAMLAttibutes); +				session.getExtendedSAMLAttributesOA().addAll(moaExtendedSAMLAttibutes);  				//produce MOA-Assertion and artifact                      				AuthenticationServer.getInstance().getForeignAuthenticationData(session);  				Logger.info("MOA assertion assembled and SAML Artifact generated."); | 
