Package lumis.portal.user
Class UserPropertiesCustomAttributes
- java.lang.Object
-
- lumis.portal.user.UserPropertiesCustomAttributes
-
public class UserPropertiesCustomAttributes extends Object implements Map<String,Map<String,String>>
This class remain custom attributes forUserProperties
. It is responsible for callUserProperties.setAttributesDirty()
for any changed. This class also will remains the synchronization for both methods:UserProperties.getCustomAttributes()
andUserProperties.getCustomAttributesMap()
.- Since:
- 14.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Constructor Summary
Constructors Constructor Description UserPropertiesCustomAttributes(Map<String,? extends Map<String,String>> map, UserProperties userProperties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<String,Map<String,String>>>
entrySet()
boolean
equals(Object obj)
Map<String,String>
get(Object key)
Map<String,Map<String,List<Object>>>
getCustomAttributesMap()
Returns a synchronized map with Listboolean
isEmpty()
Set<String>
keySet()
Map<String,String>
put(String key, Map<String,String> value)
void
putAll(Map<? extends String,? extends Map<String,String>> m)
Map<String,String>
remove(Object key)
int
size()
Collection<Map<String,String>>
values()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
containsKey
public boolean containsKey(Object key)
-
containsValue
public boolean containsValue(Object value)
-
values
public Collection<Map<String,String>> values()
-
equals
public boolean equals(Object obj)
-
-