org.springframework.ldap.core
Interface NameClassPairMapper
- All Known Implementing Classes:
- DefaultNameClassPairMapper
public interface NameClassPairMapper
Responsible for mapping NameClassPair
objects to beans.
- Author:
- Mattias Hellborg Arthursson
mapFromNameClassPair
Object mapFromNameClassPair(NameClassPair nameClassPair)
throws NamingException
- Map
NameClassPair
to an Object. The supplied
NameClassPair
is one of the results from a search
operation (search, list or listBindings). Depending on which search
operation is being performed, the NameClassPair
might be a
SearchResult
, Binding
or
NameClassPair
.
- Parameters:
nameClassPair
- NameClassPair
from a search operation.
- Returns:
- and Object built from the
NameClassPair
.
- Throws:
NamingException
- if one is encountered in the operation.