Interface NameClassPairMapper<T>

All Known Implementing Classes:
DefaultNameClassPairMapper

public interface NameClassPairMapper<T>
Responsible for mapping NameClassPair objects to beans.
  • Method Summary

    Modifier and Type
    Method
    Description
    Map NameClassPair to an Object.
  • Method Details

    • mapFromNameClassPair

      T 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.