Package org.springframework.ldap.core
Interface NameClassPairMapper<T>
- All Known Implementing Classes:
DefaultNameClassPairMapper
public interface NameClassPairMapper<T>
Responsible for mapping
NameClassPair
objects to beans.-
Method Summary
Modifier and TypeMethodDescriptionmapFromNameClassPair
(NameClassPair nameClassPair) MapNameClassPair
to an Object.
-
Method Details
-
mapFromNameClassPair
MapNameClassPair
to an Object. The suppliedNameClassPair
is one of the results from a search operation (search, list or listBindings). Depending on which search operation is being performed, theNameClassPair
might be aSearchResult
,Binding
orNameClassPair
.- Parameters:
nameClassPair
-NameClassPair
from a search operation.- Returns:
- and Object built from the
NameClassPair
. - Throws:
NamingException
- if one is encountered in the operation.
-