e494. registering for object changes in the directory.txt
来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 34 行
TXT
34 行
This example registers with the directory to receive notification when changes are made to objects that have certain attributes.
try {
// Get event context for registering listener
EventDirContext ctx = (EventDirContext)(new InitialContext(env).lookup("ou=People"));
// Create listener
NamingListener listener = new SampleObjListener();
// Specify to search the subtree
SearchControls ctls = new SearchControls();
ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);
// Specify the search filter of objects in which you're interested
// Ask for objects that have "mail" attribute
String filter = "(mail=*)";
// Register listener for object change events
ctx.addNamingListener("cn=John", filter, ctls, listener);
} catch (NamingException e) {
}
public class SampleObjListener implements ObjectChangeListener {
public SampleObjListener() {
}
public void objectChanged(NamingEvent evt) {
process(evt.getNewBinding());
process(evt.getOldBinding());
}
public void namingExceptionThrown(NamingExceptionEvent evt) {
processException(evt.getException());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?