diff options
author | Bojan Suzic <bojan.suzic@iaik.tugraz.at> | 2014-11-07 16:58:54 +0100 |
---|---|---|
committer | Bojan Suzic <bojan.suzic@iaik.tugraz.at> | 2014-11-07 16:58:54 +0100 |
commit | 348dbb4e27c9c076b356b7983feda3d9782dc198 (patch) | |
tree | 5c7ce499fb72c8aecd9eb628dd4c2936f0bad756 /id/server/stork2-commons | |
parent | 3489b058fc9b70814893d93cd9ba602240ab59e0 (diff) | |
download | moa-id-spss-348dbb4e27c9c076b356b7983feda3d9782dc198.tar.gz moa-id-spss-348dbb4e27c9c076b356b7983feda3d9782dc198.tar.bz2 moa-id-spss-348dbb4e27c9c076b356b7983feda3d9782dc198.zip |
remove unused libs
Diffstat (limited to 'id/server/stork2-commons')
2 files changed, 2 insertions, 2 deletions
diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryResponse.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryResponse.java index f6d459878..1974f4f66 100644 --- a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryResponse.java +++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAttrQueryResponse.java @@ -71,7 +71,7 @@ public class STORKAttrQueryResponse implements Serializable { private List<IPersonalAttributeList> attributeLists;
/** Citizen's personal attribute list. */
- private transient IPersonalAttributeList attributeList = new PersonalAttributeList();
+ private IPersonalAttributeList attributeList = new PersonalAttributeList();
/**
* Logger object.
diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAuthnResponse.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAuthnResponse.java index d2cc370d3..c4a3e2b6c 100644 --- a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAuthnResponse.java +++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/STORKAuthnResponse.java @@ -68,7 +68,7 @@ public final class STORKAuthnResponse implements Serializable { private String country; /** Citizen's personal attribute list. */ - private transient IPersonalAttributeList attributeList = new PersonalAttributeList(); + private IPersonalAttributeList attributeList = new PersonalAttributeList(); /** List of all assertions in response **/ private List<Assertion> assertions; |