Spec-Zone .ru
спецификации, руководства, описания, API
Trail: Java Naming and Directory Interface
Lesson: Naming and Directory Operations
Rename
Home Page > Java Naming and Directory Interface > Naming and Directory Operations

Rename

You can rename an object in a context by using Context.rename().

// Rename to Scott S
ctx.rename("cn=Scott Seligman", "cn=Scott S");
Renaming an object

This example renames the object that was bound to "cn=Scott Seligman" to "cn=Scott S". After verifying that the object got renamed, the program renames it to its original name ("cn=Scott Seligman"), as follows.

// Rename back to Scott Seligman
ctx.rename("cn=Scott S", "cn=Scott Seligman");

For more examples on renaming of LDAP entries check out the Advanced Topics for LDAP users lesson.


Problems with the examples? Try Compiling and Running the Examples: FAQs.
Complaints? Compliments? Suggestions? Give us your feedback.

Previous page: Add, Replace or Remove a Binding
Next page: Create and Destroy Subcontexts