Interface ILdapMapper

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Vector<java.lang.String> getDefaultParams()
      Returns the initial default parameters.
      java.lang.String getDescription()
      Returns the description of this mapper.
      java.lang.String getImplName()
      Returns implementation name.
      java.util.Vector<java.lang.String> getInstanceParams()
      Returns the current instance parameters.
      java.lang.String map​(netscape.ldap.LDAPConnection conn, com.netscape.certsrv.request.IRequest r, java.lang.Object obj)
      maps a certificate to a LDAP entry.
      java.lang.String map​(netscape.ldap.LDAPConnection conn, java.lang.Object obj)
      maps a certificate to a LDAP entry.
    • Method Detail

      • getImplName

        java.lang.String getImplName()
        Returns implementation name.
      • getDescription

        java.lang.String getDescription()
        Returns the description of this mapper.
      • getDefaultParams

        java.util.Vector<java.lang.String> getDefaultParams()
        Returns the initial default parameters.
      • getInstanceParams

        java.util.Vector<java.lang.String> getInstanceParams()
        Returns the current instance parameters.
      • map

        java.lang.String map​(netscape.ldap.LDAPConnection conn,
                             java.lang.Object obj)
                      throws com.netscape.certsrv.ldap.ELdapException
        maps a certificate to a LDAP entry. returns dn of the mapped LDAP entry.
        Parameters:
        conn - the LDAP connection
        obj - the object to map
        Returns:
        dn indicates whether a mapping was successful
        Throws:
        com.netscape.certsrv.ldap.ELdapException - Map operation failed.
      • map

        java.lang.String map​(netscape.ldap.LDAPConnection conn,
                             com.netscape.certsrv.request.IRequest r,
                             java.lang.Object obj)
                      throws com.netscape.certsrv.ldap.ELdapException
        maps a certificate to a LDAP entry. returns dn of the mapped LDAP entry.
        Parameters:
        conn - the LDAP connection
        r - the request to map
        obj - the object to map
        Returns:
        dn indicates whether a mapping was successful
        Throws:
        com.netscape.certsrv.ldap.ELdapException - Map operation failed.