com.plumtree.server
Interface IPTLDAPQueryTool


Deprecated.

public interface IPTLDAPQueryTool

This interface provided simple LDAP query functionality for previous versions of Plumtree. It has been deprecated, as the LDAP Authentication Source Provider will not be supported in future versions of Plumtree.

Author:
MikeJ

Method Summary
 java.lang.String GetEncryptedPassword()
          Deprecated.  
 void Search(java.lang.String bstrBase, java.lang.String bstrFilter, java.lang.String[] arrAttributes, java.lang.String bstrDN, java.lang.String bstrPassword, IPTUserInfo pUserInfo, java.lang.String bstrDelimiter)
          Deprecated. Performs an LDAP search for a number of LDAP attributes.
 void Search(java.lang.String bstrBase, java.lang.String bstrFilter, java.lang.String arrAttributes, java.lang.String bstrDN, java.lang.String bstrPassword, IPTUserInfo pUserInfo, java.lang.String bstrDelimiter)
          Deprecated. Performs an LDAP search for a single LDAP attribute.
 

Method Detail

Search

void Search(java.lang.String bstrBase,
            java.lang.String bstrFilter,
            java.lang.String[] arrAttributes,
            java.lang.String bstrDN,
            java.lang.String bstrPassword,
            IPTUserInfo pUserInfo,
            java.lang.String bstrDelimiter)
Deprecated. 
Performs an LDAP search for a number of LDAP attributes. The search always has scope BASE; it cannot return more than one object. Passing null for arrAttributes will result in all attributes being returned.

Parameters:
bstrBase - query base
bstrFilter - query filter
arrAttributes - attributes to return
bstrDN - distinguished name of the object to query
bstrPassword - LDAP authentication password
pUserInfo - IPTUserInfo object the results will be added to
bstrDelimiter - used to separate multiple values for an attribute

Search

void Search(java.lang.String bstrBase,
            java.lang.String bstrFilter,
            java.lang.String arrAttributes,
            java.lang.String bstrDN,
            java.lang.String bstrPassword,
            IPTUserInfo pUserInfo,
            java.lang.String bstrDelimiter)
Deprecated. 
Performs an LDAP search for a single LDAP attribute. The search always has scope BASE; it cannot return more than one object. Passing null for arrAttributes will result in all attributes being returned.

Parameters:
bstrBase - query base
bstrFilter - query filter
arrAttributes - the attribute
bstrDN - distinguished name of the object to query
bstrPassword - LDAP authentication password
pUserInfo - IPTUserInfo object the results will be added to
bstrDelimiter - used to separate multiple values for an attribute

GetEncryptedPassword

java.lang.String GetEncryptedPassword()
Deprecated. 

This method is unimplemented and deprecated.

Returns:
undefined