I'm trying to change the name of a JCR node, but I have no idea how? Has someone of you some hints?

Many thanks.

link|improve this question

20% accept rate
are you trying to change the node's name "property" or the node's "type" name? – anirvan Nov 12 '10 at 13:21
feedback

1 Answer

The Jackrabbit Wiki provides an example:

void rename(Node node, String newName) throws RepositoryException 
    {
        node.getSession().move(node.getPath(), node.getParent().getPath() + "/" + newName);
        // Don't forget - not necessarily here at this place:
        // node.getSession().save();
    }
link|improve this answer
Note that the rename method is not part of JCR. It is part of the Jackrabbit API though. If you want to be strictly JCR compliant you need to use the move method to move a node to a new name. In addition, if the parent node is orderable, you have to reorder the moved node to its previous place after moving. – michid Nov 16 '10 at 11:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.