本文整理匯總了Java中javax.naming.directory.DirContext.unbind方法的典型用法代碼示例。如果您正苦於以下問題:Java DirContext.unbind方法的具體用法?Java DirContext.unbind怎麽用?Java DirContext.unbind使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.naming.directory.DirContext
的用法示例。
在下文中一共展示了DirContext.unbind方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: removeEntryDn
import javax.naming.directory.DirContext; //導入方法依賴的package包/類
/**
* Low level method: removes an entry from the LDAP database,
* using the specified dn/pswd for authorization.
* <p>
* Silly JNDI/LDAP spec: Returns void, with no exceptions, whether
* or not the subjectDn existed before the call.
*
* @param host the URI of the LDAP server.
* @param authDn the authorized dn (distinguished name) of the caller
* @param password the password associated with authDn
* @param subjectDn the dn to be removed.
*/
public void removeEntryDn(
String authDn,
String password,
String subjectDn)
throws LdapException
{
chkstg( "subject dn", subjectDn);
// Insure entry exists. If not, getAttributesDn will throw
// LdapNotFoundException.
getAttributesDn(
authDn,
password,
subjectDn,
null);
DirContext dirctx = getDirContext( authDn, password);
try { dirctx.unbind( subjectDn); }
catch( NamingException nexc) {
if (bugs >= 1) {
prtln("removeEntryDn: nexc: " + nexc);
nexc.printStackTrace();
prtln();
prtln("authDn: \"" + authDn + "\"");
prtln("password: \"" + password + "\"");
prtln("subjectDn: \"" + subjectDn + "\"");
prtln();
}
throw new LdapException("removeEntryDn: exception", nexc);
}
}