aboutsummaryrefslogtreecommitdiff
path: root/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java')
-rw-r--r--id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java27
1 files changed, 26 insertions, 1 deletions
diff --git a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java
index bb9b3b694..5d8281445 100644
--- a/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java
+++ b/id/server/stork2-commons/src/main/java/eu/stork/peps/auth/commons/PersonalAttribute.java
@@ -18,6 +18,7 @@ import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
import org.apache.log4j.Logger;
@@ -56,9 +57,14 @@ public final class PersonalAttribute implements Serializable, Cloneable {
private List<String> value = new ArrayList<String>();
/**
+ * Type of the personal attribute.
+ */
+ private String type;
+
+ /**
* Complex values of the personal attribute.
*/
- private Map<String, String> complexValue = new HashMap<String, String>();
+ private Map<String, String> complexValue = new ConcurrentHashMap<String, String>();
/**
* Is the personal attribute mandatory?
@@ -202,6 +208,25 @@ public final class PersonalAttribute implements Serializable, Cloneable {
}
}
+
+ /**
+ * Getter for the type value.
+ *
+ * @return The name value.
+ */
+ public String getType() {
+ return type;
+ }
+
+ /**
+ * Setter for the type value.
+ *
+ * @param attrName The personal attribute type.
+ */
+ public void setType(final String attrType) {
+ this.type = attrType;
+ }
+
/**
* Getter for the status.
*