diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-22 12:27:38 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-22 12:27:38 +0100 |
commit | f81e455bfc1bdd23ce89bfcc0b626210417d0cbb (patch) | |
tree | 1f85f501d522f0295a41dee1a8c016143431b612 /id/server/modules/moa-id-module-eIDAS/src/main/java | |
parent | f441b49a4eadb475396217901bbbc49973ca8107 (diff) | |
download | moa-id-spss-f81e455bfc1bdd23ce89bfcc0b626210417d0cbb.tar.gz moa-id-spss-f81e455bfc1bdd23ce89bfcc0b626210417d0cbb.tar.bz2 moa-id-spss-f81e455bfc1bdd23ce89bfcc0b626210417d0cbb.zip |
fix some refactoring problems
Diffstat (limited to 'id/server/modules/moa-id-module-eIDAS/src/main/java')
-rw-r--r-- | id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASData.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASData.java b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASData.java index 5c25c49c5..3c33b8d58 100644 --- a/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASData.java +++ b/id/server/modules/moa-id-module-eIDAS/src/main/java/at/gv/egovernment/moa/id/protocols/eidas/EIDASData.java @@ -1,8 +1,7 @@ package at.gv.egovernment.moa.id.protocols.eidas; -import java.util.List; +import java.util.Collection; -import org.opensaml.saml2.core.Attribute; import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; @@ -28,7 +27,7 @@ public class EIDASData extends RequestImpl { private String remoteIPAddress; @Override - public List<Attribute> getRequestedAttributes() { + public Collection<String> getRequestedAttributes() { // TODO Auto-generated method stub return null; } |