aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib
diff options
context:
space:
mode:
authorFlorian Reimair <florian.reimair@iaik.tugraz.at>2014-03-05 10:33:14 +0100
committerFlorian Reimair <florian.reimair@iaik.tugraz.at>2014-03-05 10:33:28 +0100
commit31a10590f3efee8aca463b43623ee689f7b0c605 (patch)
tree987eebd114f06194e014db77a8846af709b3a7b1 /id/server/idserverlib
parent1ba3c2042e0c4da08af39db6172ff1206dfece36 (diff)
downloadmoa-id-spss-31a10590f3efee8aca463b43623ee689f7b0c605.tar.gz
moa-id-spss-31a10590f3efee8aca463b43623ee689f7b0c605.tar.bz2
moa-id-spss-31a10590f3efee8aca463b43623ee689f7b0c605.zip
fixed throws declaration
Diffstat (limited to 'id/server/idserverlib')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java
index 7aab42426..f23e0f599 100644
--- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java
+++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java
@@ -253,8 +253,9 @@ public class AttributeCollector implements IAction {
*
* @param target the target
* @param source the source
+ * @throws MOAIDException
*/
- private void addOrUpdateAll(IPersonalAttributeList target, IPersonalAttributeList source) {
+ private void addOrUpdateAll(IPersonalAttributeList target, IPersonalAttributeList source) throws MOAIDException {
for (PersonalAttribute current : source) {
// check if we need to update the current pa
if (target.containsKey(current.getName())) {