Spring LDAP

org.springframework.ldap.core
Interface ContextAssembler

All Superinterfaces:
ContextMapper

public interface ContextAssembler
extends ContextMapper

Helper interface to be used by Dao implementations for assembling to and from context. Useful if we have assembler classes responsible for mapping to and from a specific entry.

Author:
Mattias Hellborg Arthursson

Method Summary
 void mapToContext(Object obj, Object ctx)
          Map the supplied object to the specified context.
 
Methods inherited from interface org.springframework.ldap.core.ContextMapper
mapFromContext
 

Method Detail

mapToContext

void mapToContext(Object obj,
                  Object ctx)
Map the supplied object to the specified context.

Parameters:
obj - the object to read data from.
ctx - the context to map to.

Spring LDAP