LDAPJDK 4.1

Class LDAPDelete

java.lang.Object
  |
  +--LDAPTool
        |
        +--LDAPDelete

public class LDAPDelete
extends LDAPTool

Executes the delete command to delete an LDAP entry. This class is implemented based on the java LDAP classes.

 usage       : java LDAPDelete [options] DN
 for example : java -D "dn" -w password -h ds.internic.net -p 389
               "cn=Johnny James,o=Ace Industry"
 options: {np = no parameters, p = requires parameters}
  'D' bind DN --------------------------------------------- p
  'h' LDAP host ------------------------------------------- p
  'p' LDAP port ------------------------------------------- p
  'w' bind password --------------------------------------- p
 note: '-' or '/' is used to distinct the option field.
       e.g. -a -b /c /d parameter -e parameter
 


Fields inherited from class LDAPTool
m_binddn, m_client, m_debugLevel, m_hopLimit, m_justShow, m_ldaphost, m_ldapport, m_ordinary, m_passwd, m_proxyControl, m_referrals, m_verbose, m_version
 
Constructor Summary
LDAPDelete()
           
 
Method Summary
protected static void extractParameters(java.lang.String[] args)
          This class-method is used to extract specified parameters from the arguments list.
static void main(java.lang.String[] args)
           
 
Methods inherited from class LDAPTool
extractParameters, setDefaultReferralCredentials
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LDAPDelete

public LDAPDelete()
Method Detail

main

public static void main(java.lang.String[] args)

extractParameters

protected static void extractParameters(java.lang.String[] args)
This class-method is used to extract specified parameters from the arguments list.

LDAPJDK 4.1