Hi, I want to move a node to a new destination where I can have same-name siblings. I can't use the current MoveOperation as it always deletes the destination node.
if (session.itemExists(destPath)) {
session.getItem(destPath).remove();
}
Is it worthwile to create a patch which checks whether same name
siblings are allowed
and in that case not delete the destination node or should I rather
create my own move operation?
Regards,
Markus
