|
Relates :
|
|
|
Relates :
|
Add support for AutoCloseable to javax.naming.Context.
Will enable the use of try-with-resourses constructs, for example:
try (DirContext ctx = new InitialDirContext(env)) {
NamingEnumeration<SearchResult> answer =
ctx.search("ou=People,o=JNDITutorial", "(objectClass=*)", null);
}
|