Class LdapQueryResultRow
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,String>
-
- org.ametys.plugins.externaldata.data.ldap.LdapQueryResultRow
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,String>
,QueryResultRow
public class LdapQueryResultRow extends HashMap<String,String> implements QueryResultRow
LDAP implementation of Query Result Row.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description LdapQueryResultRow()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
get(String columnName)
Get this row's value for the specified attribute.-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
LdapQueryResultRow
public LdapQueryResultRow()
-
-
Method Detail
-
get
public String get(String columnName) throws DataInclusionException
Description copied from interface:QueryResultRow
Get this row's value for the specified attribute.- Specified by:
get
in interfaceQueryResultRow
- Parameters:
columnName
- the column/attribute name.- Returns:
- the column names as a Collection.
- Throws:
DataInclusionException
- if an error occurs retrieving the value.
-
-